From e520ea8178ac3d3254cfe68bf5fb1c86acb20ca0 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Wed, 10 Oct 2012 17:43:53 -0400 Subject: [PATCH] staprun: arrange -v params commeasurate with stap -v * buildrun.cxx (make_run_command): Instead of a meager zero-to-two -v's for staprun, add just as many as s.verbose currently indicates. --- buildrun.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/buildrun.cxx b/buildrun.cxx index 6108c0f5f..1b068518e 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -657,9 +657,7 @@ make_run_command (systemtap_session& s, const string& remotedir, // for now, just spawn staprun vector staprun_cmd; staprun_cmd.push_back(getenv("SYSTEMTAP_STAPRUN") ?: BINDIR "/staprun"); - if (s.verbose>1) - staprun_cmd.push_back("-v"); - if (s.verbose>2) + for (unsigned i=0; i