]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
configure: fix vtable help
authorMike Frysinger <vapier@gentoo.org>
Thu, 28 May 2015 14:27:35 +0000 (14:27 +0000)
committerMike Frysinger <vapier@gcc.gnu.org>
Thu, 28 May 2015 14:27:35 +0000 (14:27 +0000)
Spacing is off causing --help to not line up.  Use the standard
AS_HELP_STRING like all the other options.

From-SVN: r223833

ChangeLog
configure
configure.ac

index 1a06c97419d889c1b468bf5a383988a21432767a..98eafd178c66cf3ac718cc07ee9d57062874abf9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-05-28  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
+       * configure: Regenerate.
+
 2015-05-26  Jason Merrill  <jason@redhat.com>
 
        * configure.ac: When bootstrapping with GCC, add -std=c++98 to CXX.
index 633afa405a410635d4327c89d948793323bd6a4b..167b506002a015ad7cbea6282e1f33bf0222d282 100755 (executable)
--- a/configure
+++ b/configure
@@ -1500,7 +1500,7 @@ Optional Features:
                           Mostly useful for compiler development
   --enable-objc-gc        enable use of Boehm's garbage collector with the GNU
                           Objective-C runtime
-  --enable-vtable-verify    Enable vtable verification feature
+  --enable-vtable-verify  Enable vtable verification feature
   --enable-serial-[{host,target,build}-]configure
                           force sequential configuration of sub-packages for
                           the host, target or build machine, or all
index 431cb170e163329f82a3c8e55a9752396d149e67..25093056279123ac5077381f8857e352826bbde0 100644 (file)
@@ -2677,7 +2677,8 @@ AC_SUBST(BUILD_CONFIG)
 # Use same top-level configure hooks in libgcc/libstdc++/libvtv.
 AC_MSG_CHECKING([for --enable-vtable-verify])
 AC_ARG_ENABLE(vtable-verify,
-[  --enable-vtable-verify    Enable vtable verification feature ],
+[AS_HELP_STRING([--enable-vtable-verify],
+               [Enable vtable verification feature])],
 [case "$enableval" in
  yes) enable_vtable_verify=yes ;;
  no)  enable_vtable_verify=no ;;