summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure
index bc39fd7..bb5b1b8 100755
--- a/configure
+++ b/configure
@@ -365,7 +365,9 @@ cat > $test.c << EOF
int foo() { return 0; }
EOF
echo "Checking for obsessive-compulsive compiler options..." >> configure.log
-if ! try $CC -c $CFLAGS $test.c; then
+if try $CC -c $CFLAGS $test.c; then
+ :
+else
echo "Compiler error reporting is too harsh for $0 (perhaps remove -Werror)." | tee -a configure.log
leave 1
fi