summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2013-10-07 12:36:34 -0700
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-15 23:58:15 +0200
commit74f2a1bd472802cc93e416d2916d0e798e199515 (patch)
treeb8360888f1111919effc4ab5ae9645080dbe46ea
parent6cdc033c61eeca5303fd271d28003f8617f9f830 (diff)
Fix the printing of qmake's output when OPT_VERBOSE=yes
Don't discard stdout, it might contain important information. For example, if qmake crashes, the segfault or similar notification comes to stdout. Change-Id: I53def75f37f134544922cf01b4f2ba7c903351cb Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 4e0d6f1e07..adcc64bba2 100755
--- a/configure
+++ b/configure
@@ -4230,7 +4230,7 @@ fi
#-------------------------------------------------------------------------------
# Verify makespec
#-------------------------------------------------------------------------------
-QMAKE_OUTPUT=`$outpath/bin/qmake -E -nocache -spec "$XQMAKESPEC" "QT=" $DEV_NULL 2>&1 >/dev/null`
+QMAKE_OUTPUT=`$outpath/bin/qmake -E -nocache -spec "$XQMAKESPEC" "QT=" $DEV_NULL 2>&1`
if [ $? != "0" ]; then
echo "Failed to process makespec for platform '$XPLATFORM'"
if [ "$OPT_VERBOSE" = "yes" ]; then