From 67a1cb2ad16ff9ff5a7dc4532d0e0fe98be42382 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Fri, 11 Mar 2022 18:33:40 +0000 Subject: [PATCH] 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. --- configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 9c2d7df..f7e0fa4 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 68cc5cc..434b1a2 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*) -- 2.7.4