|
From: <sv...@va...> - 2014-09-01 19:32:18
|
Author: sewardj
Date: Mon Sep 1 19:32:07 2014
New Revision: 14410
Log:
Remove two extraneous Ls introduced by mistake in r14319, which had
the effect of causing CFLAGS environment variable settings to be
ignored for certain parts of the build (genoffsets.c, for one).
Modified:
trunk/configure.ac
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Mon Sep 1 19:32:07 2014
@@ -1733,7 +1733,7 @@
# warning flag is supported.
AC_DEFUN([AC_GCC_WARNING_COND],[
AC_MSG_CHECKING([if gcc accepts -W$1])
-safe_CFLAGS=$CLFLAGS
+safe_CFLAGS=$CFLAGS
CFLAGS="-W$1"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[;]])], [
has_warning_flag=yes
@@ -1757,7 +1757,7 @@
# substitution is then done to cancel the warning flag.
AC_DEFUN([AC_GCC_WARNING_SUBST_NO],[
AC_MSG_CHECKING([if gcc accepts -W$1])
-safe_CFLAGS=$CLFLAGS
+safe_CFLAGS=$CFLAGS
CFLAGS="-W$1"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[;]])], [
AC_SUBST([$2], [-Wno-$1])
|