From e65b03c170887fa9076119afd123a7384c12c630 Mon Sep 17 00:00:00 2001 From: hunt Date: Wed, 14 Mar 2007 16:19:37 +0000 Subject: 2007-03-14 Martin Hunt * Makefile.am (staprun_SOURCES): Sources now live in runtime/staprun. * makefile.in: Rebuilt. * staprun.8.in: Updated. * buildrun.cxx (run_pass): Use "-v" instead of not "-q" to be compatible with latest staprun. * translate.cxx (emit_module_exit): Print warning using _stp_printf so it shows up at the end of all output. (translate_pass): Replace STP_RELAYFS with STP_BULKMODE. Eliminate STP_RELAYFS_MERGE. --- buildrun.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'buildrun.cxx') diff --git a/buildrun.cxx b/buildrun.cxx index 803cc91f..1c5ce0f6 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -105,7 +105,7 @@ run_pass (systemtap_session& s) // for now, just spawn staprun string staprun_cmd = string("sudo ") + string(BINDIR) + "/staprun " - + (s.verbose>1 ? "" : "-q ") + + (s.verbose>1 ? "-v " : "") + "-u " + username + " " + (s.output_file.empty() ? "" : "-o " + s.output_file + " "); -- cgit