Skip to content

Commit

Permalink
updated test for whether CFLAGS was set by the user (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj authored Feb 9, 2022
1 parent 7e92d55 commit 7188a4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion m4/ax_cc_maxopt.m4
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ AC_REQUIRE([AX_COMPILER_VENDOR])
AC_REQUIRE([AC_CANONICAL_HOST])
# Try to determine "good" native compiler flags if none specified via CFLAGS
if test "$ac_test_CFLAGS" != "set"; then
if test "x$ac_test_CFLAGS" != "xset" -a "x$ac_test_CFLAGS" != "xy"; then
CFLAGS=""
case $ax_cv_c_compiler_vendor in
dec) CFLAGS="-newc -w0 -O5 -ansi_alias -ansi_args -fp_reorder -tune host"
Expand Down

0 comments on commit 7188a4c

Please sign in to comment.