From: Jonathan Wakely Date: Fri, 11 Mar 2022 18:33:40 +0000 (+0000) Subject: top-level: Fix comment about --enable-libstdcxx in configure X-Git-Tag: basepoints/gcc-13~671 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=67a1cb2ad16ff9ff5a7dc4532d0e0fe98be42382;p=thirdparty%2Fgcc.git top-level: Fix comment about --enable-libstdcxx in configure The custom option for enabling/disabling libstdc++ is not spelled the same as the directory name: AC_ARG_ENABLE(libstdcxx, AS_HELP_STRING([--disable-libstdcxx], [do not build libstdc++-v3 directory]) The comment referring to it later use the wrong name. ChangeLog: * configure.ac: Fix incorrect option in comment. * configure: Regenerate. --- diff --git a/configure b/configure index 9c2d7df1bb22..f7e0fa46c9c8 100755 --- a/configure +++ b/configure @@ -3390,7 +3390,7 @@ case "${target}" in esac # Disable libstdc++-v3 for some systems. -# Allow user to override this if they pass --enable-libstdc++-v3 +# Allow user to override this if they pass --enable-libstdcxx if test "${ENABLE_LIBSTDCXX}" = "default" ; then case "${target}" in *-*-vxworks*) diff --git a/configure.ac b/configure.ac index 68cc5cc31fe9..434b1a267a46 100644 --- a/configure.ac +++ b/configure.ac @@ -649,7 +649,7 @@ case "${target}" in esac # Disable libstdc++-v3 for some systems. -# Allow user to override this if they pass --enable-libstdc++-v3 +# Allow user to override this if they pass --enable-libstdcxx if test "${ENABLE_LIBSTDCXX}" = "default" ; then case "${target}" in *-*-vxworks*)