From: Julian Seward Date: Mon, 1 Sep 2014 19:32:07 +0000 (+0000) Subject: Remove two extraneous Ls introduced by mistake in r14319, which had X-Git-Tag: svn/VALGRIND_3_10_0~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8189d0c12917a4bcfc1cdaebb4e1a62210278f72;p=thirdparty%2Fvalgrind.git 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 --- 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])