summaryrefslogtreecommitdiffstats
path: root/buildrun.cxx
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2008-11-29 16:43:41 -0500
committerFrank Ch. Eigler <fche@elastic.org>2008-11-29 16:43:41 -0500
commitf4d5049b5d74cf907c5c5bba3130306adff0205d (patch)
tree85e84ffc759b53ade1132d56b1bc4281242335f2 /buildrun.cxx
parent478c850f8fd74af2ecadbb68bab95f0949e21ade (diff)
downloadsystemtap-steved-f4d5049b5d74cf907c5c5bba3130306adff0205d.tar.gz
systemtap-steved-f4d5049b5d74cf907c5c5bba3130306adff0205d.tar.xz
systemtap-steved-f4d5049b5d74cf907c5c5bba3130306adff0205d.zip
buildrun/caching warning cleanup
Diffstat (limited to 'buildrun.cxx')
-rw-r--r--buildrun.cxx10
1 files changed, 3 insertions, 7 deletions
diff --git a/buildrun.cxx b/buildrun.cxx
index ef2a483f..f9588906 100644
--- a/buildrun.cxx
+++ b/buildrun.cxx
@@ -201,7 +201,7 @@ verify_uprobes_uptodate (systemtap_session& s)
int rc = run_make_cmd(s, make_cmd);
if (rc) {
clog << "SystemTap's version of uprobes is out of date." << endl;
- clog << "As root, run \"make\" in " << uprobes_home << "." << endl;
+ clog << "As root, run \"make -C " << uprobes_home << "\"." << endl;
}
return rc;
@@ -217,12 +217,8 @@ make_uprobes (systemtap_session& s)
string make_cmd = string("make -C ") + uprobes_home;
int rc = run_make_cmd(s, make_cmd);
- if (s.verbose) {
- if (rc)
- clog << "Uprobes (re)build failed." << endl;
- else
- clog << "Uprobes (re)build complete." << endl;
- }
+ if (s.verbose > 1)
+ clog << "uprobes rebuild rc=" << rc << endl;
return rc;
}