]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
top-level: Fix comment about --enable-libstdcxx in configure
authorJonathan Wakely <jwakely@redhat.com>
Fri, 11 Mar 2022 18:33:40 +0000 (18:33 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Mon, 14 Mar 2022 13:08:02 +0000 (13:08 +0000)
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.

configure
configure.ac

index 9c2d7df1bb22d802f2dc838d8c6d85fe414803e8..f7e0fa46c9c862af04825c47f30a8090f73267fd 100755 (executable)
--- 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*)
index 68cc5cc31fe91d6abf497bf5aa981ca1749c1662..434b1a267a464bf63f3d5a3f0968503d415c5333 100644 (file)
@@ -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*)