summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2009-08-13 16:04:56 -0400
committerFrank Ch. Eigler <fche@elastic.org>2009-08-14 08:40:25 -0400
commitb9bee53ec058c142ac5ba010224dd75669d61ad5 (patch)
tree2a3bc63603623cc9129a9675d1f1e8ff056bd32d
parentf3228a333bddb3fe0178a1ca2c8cf8ada54dffd4 (diff)
downloadsystemtap-steved-b9bee53ec058c142ac5ba010224dd75669d61ad5.tar.gz
systemtap-steved-b9bee53ec058c142ac5ba010224dd75669d61ad5.tar.xz
systemtap-steved-b9bee53ec058c142ac5ba010224dd75669d61ad5.zip
usability: don't suppress pass-4 compiler errors
... since a pass-4 compilation error is just as bad as pass-2 error. * buildrun.cxx (run_make_cmd): Remove "2>&1".
-rw-r--r--buildrun.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildrun.cxx b/buildrun.cxx
index a93b2909..be3d89ed 100644
--- a/buildrun.cxx
+++ b/buildrun.cxx
@@ -61,7 +61,7 @@ run_make_cmd(systemtap_session& s, string& make_cmd)
else if (s.verbose > 1)
make_cmd += " >/dev/null";
else
- make_cmd += " -s >/dev/null 2>&1";
+ make_cmd += " -s >/dev/null";
if (s.verbose > 1) clog << "Running " << make_cmd << endl;
rc = stap_system (make_cmd.c_str());