From 8189d0c12917a4bcfc1cdaebb4e1a62210278f72 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Mon, 1 Sep 2014 19:32:07 +0000 Subject: [PATCH] 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). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14410 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index c2eaac28b8..63323b4bec 100644 --- a/configure.ac +++ b/configure.ac @@ -1733,7 +1733,7 @@ AC_SUBST(PREFERRED_STACK_BOUNDARY) # 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 @@ AC_GCC_WARNING_COND([write-strings], [HAS_WRITE_STRINGS_WARNING]) # 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]) -- 2.47.2