From: Emanuele Giaquinta Date: Fri, 14 May 2021 06:06:20 +0000 (+0300) Subject: _AC_PROG_CXX_STDCXX_EDITION_TRY: fix typo in variable name X-Git-Tag: v2.72c~89 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f460883035ef849a2248b1713f711292ec19f4f0;p=thirdparty%2Fautoconf.git _AC_PROG_CXX_STDCXX_EDITION_TRY: fix typo in variable name The typo causes "ac_prog_cxx_stdcxx" to be always set to "cxx11", regardless of whether the C++ compiler supports C++11. Message-Id: (tiny change) --- diff --git a/lib/autoconf/c.m4 b/lib/autoconf/c.m4 index 9f881f0b..47434c89 100644 --- a/lib/autoconf/c.m4 +++ b/lib/autoconf/c.m4 @@ -2749,8 +2749,8 @@ AC_DEFUN([_AC_PROG_CXX_STDCXX_EDITION_TRY], [AC_REQUIRE([_AC_CXX_CXX$1_TEST_PROGRAM])]dnl [AS_IF([test x$ac_prog_cxx_stdcxx = xno], [AC_MSG_CHECKING([for $CXX option to enable C++$1 features]) -AC_CACHE_VAL(ac_cv_prog_cxx_$1, -[ac_cv_prog_cxx_$1=no +AC_CACHE_VAL(ac_cv_prog_cxx_cxx$1, +[ac_cv_prog_cxx_cxx$1=no ac_save_CXX=$CXX AC_LANG_CONFTEST([AC_LANG_DEFINES_PROVIDED][$][ac_cxx_conftest_cxx$1_program]) for ac_arg in '' m4_normalize(m4_defn([_AC_CXX_CXX$1_OPTIONS]))