From b9bee53ec058c142ac5ba010224dd75669d61ad5 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Thu, 13 Aug 2009 16:04:56 -0400 Subject: [PATCH] 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". --- buildrun.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildrun.cxx b/buildrun.cxx index a93b29092..be3d89ed1 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()); -- 2.43.5