aboutsummaryrefslogtreecommitdiff
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
365int foo() { return 0; } 365int foo() { return 0; }
366EOF 366EOF
367echo "Checking for obsessive-compulsive compiler options..." >> configure.log 367echo "Checking for obsessive-compulsive compiler options..." >> configure.log
368if ! try $CC -c $CFLAGS $test.c; then 368if try $CC -c $CFLAGS $test.c; then
369 :
370else
369 echo "Compiler error reporting is too harsh for $0 (perhaps remove -Werror)." | tee -a configure.log 371 echo "Compiler error reporting is too harsh for $0 (perhaps remove -Werror)." | tee -a configure.log
370 leave 1 372 leave 1
371fi 373fi