From f4d5049b5d74cf907c5c5bba3130306adff0205d Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Sat, 29 Nov 2008 16:43:41 -0500 Subject: buildrun/caching warning cleanup --- buildrun.cxx | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'buildrun.cxx') 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; } -- cgit