summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmanuele Giaquinta <emanuele.giaquinta@gmail.com>2021-05-14 09:06:20 +0300
committerEric Blake <eblake@redhat.com>2021-06-30 14:53:54 -0500
commitf460883035ef849a2248b1713f711292ec19f4f0 (patch)
tree932fcc67251c37d427eec219233a28ffe60c2298
parenta1b9ba479069d95de5cf13ffa2655893040bad59 (diff)
downloadautoconf-f460883035ef849a2248b1713f711292ec19f4f0.tar.gz
_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: <YJ4TXAeJcvU0oSec@FSAPPLE2215.fi.f-secure.com> (tiny change)
-rw-r--r--lib/autoconf/c.m44
1 files changed, 2 insertions, 2 deletions
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]))