summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure b/configure
index 0dfc8d3a5a..54a6be4846 100755
--- a/configure
+++ b/configure
@@ -356,7 +356,11 @@ compilerSupportsFlag()
cat >conftest.cpp <<EOF
int main() { return 0; }
EOF
- "$@" -o conftest-out.o conftest.cpp >/dev/null 2>&1
+ if [ "$OPT_VERBOSE" = "yes" ]; then
+ "$@" -o conftest-out.o conftest.cpp
+ else
+ "$@" -o conftest-out.o conftest.cpp >/dev/null 2>&1
+ fi
ret=$?
rm -f conftest.cpp conftest-out.o
return $ret