summaryrefslogtreecommitdiffstats
path: root/buildrun.cxx
diff options
context:
space:
mode:
authorhunt <hunt>2007-03-14 16:19:37 +0000
committerhunt <hunt>2007-03-14 16:19:37 +0000
commite65b03c170887fa9076119afd123a7384c12c630 (patch)
tree1cf3a108a3dbb33f66eb7de64268896ce5b388da /buildrun.cxx
parent8c235ce57600584d3126ad86520b4fb44765c8ec (diff)
downloadsystemtap-steved-e65b03c170887fa9076119afd123a7384c12c630.tar.gz
systemtap-steved-e65b03c170887fa9076119afd123a7384c12c630.tar.xz
systemtap-steved-e65b03c170887fa9076119afd123a7384c12c630.zip
2007-03-14 Martin Hunt <hunt@redhat.com>
* 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.
Diffstat (limited to 'buildrun.cxx')
-rw-r--r--buildrun.cxx2
1 files changed, 1 insertions, 1 deletions
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 + " ");