From f7ed81d3abe0db3866a2bfc949602c5ef608e3fd Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 29 Aug 2009 18:58:39 -0500 Subject: [PATCH] Reverted to system() which preserves piping. --- tools/buildbot/startbuild.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/buildbot/startbuild.pl b/tools/buildbot/startbuild.pl index d3f43558..649da1de 100755 --- a/tools/buildbot/startbuild.pl +++ b/tools/buildbot/startbuild.pl @@ -11,11 +11,10 @@ require 'helpers.pm'; chdir('../../../OUTPUT'); if ($^O eq "linux") { - $output = `python3.1 build.py 2>&1`; + system("python3.1 build.py 2>&1"); } else { - $output = `C:\\Python31\\python.exe build.py 2>&1`; + system("C:\\Python31\\python.exe build.py 2>&1"); } -print($output); if ($? != 0) {