diff options
author | hunt <hunt> | 2006-09-13 22:46:45 +0000 |
---|---|---|
committer | hunt <hunt> | 2006-09-13 22:46:45 +0000 |
commit | f0a917e2f7854fdc9be3c47611e9aca2d94086a6 (patch) | |
tree | faf8cf091fd722ee5682d3ed2213e9fffd7482e4 | |
parent | 3f4deba001e76e2af20b9b6f9a1522c309c67fda (diff) | |
download | systemtap-steved-f0a917e2f7854fdc9be3c47611e9aca2d94086a6.tar.gz systemtap-steved-f0a917e2f7854fdc9be3c47611e9aca2d94086a6.tar.xz systemtap-steved-f0a917e2f7854fdc9be3c47611e9aca2d94086a6.zip |
2006-09-13 Martin Hunt <hunt@redhat.com>
* buildrun.cxx (run_pass): Remove "-r" option to stpd.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | buildrun.cxx | 1 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2006-09-13 Martin Hunt <hunt@redhat.com> + + * buildrun.cxx (run_pass): Remove "-r" option to stpd. + 2006-09-13 Will Cohen <wcohen@redhat.com> * tapsets.cxx (perfmon_derived_probe_group::emit_module_init): diff --git a/buildrun.cxx b/buildrun.cxx index 4c869fa2..0062abea 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -128,7 +128,6 @@ run_pass (systemtap_session& s) // for now, just spawn stpd string stpd_cmd = string("sudo ") + string(PKGLIBDIR) + "/stpd " - + (s.bulk_mode ? "" : "-r ") + (s.verbose>1 ? "" : "-q ") + (s.merge ? "" : "-m ") + "-u " + username + " " |