From 666c5d26d1b1099220b53f81c1f3113933935eca Mon Sep 17 00:00:00 2001 From: Michael Pyne Date: Tue, 3 Jan 2012 19:35:18 -0500 Subject: [PATCH] Restore proper output redirection. I flipped the test of the redirection logic in commit a2b25b883, which caused stderr output to be sent to tty instead of stdout. --- kdesrc-build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kdesrc-build b/kdesrc-build index b353b8f..654758d 100755 --- a/kdesrc-build +++ b/kdesrc-build @@ -4538,8 +4538,8 @@ sub log_command # Make sure we log everything. # In the case of Qt, we may have forced on progress output so let's # leave that interactive to keep the logs sane. - if($module->buildSystemType() eq 'Qt' && - $module->buildSystem()->forceProgressOutput()) + if(!($module->buildSystemType() eq 'Qt' && + $module->buildSystem()->forceProgressOutput())) { open (STDERR, ">&STDOUT"); }