From: Vladimir Mezentsev Date: Fri, 1 Nov 2024 00:23:26 +0000 (-0700) Subject: Fix 32303 ./configure --help: replace --enable-gprofng with --disable-gprofng X-Git-Tag: gdb-16-branchpoint~545 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e0c182c3acd510dcfefbe1ff2d5b66106cafcf3f;p=thirdparty%2Fbinutils-gdb.git Fix 32303 ./configure --help: replace --enable-gprofng with --disable-gprofng ChangeLog 2024-10-31 Vladimir Mezentsev PR 32303 * configure.ac: Replace --enable-gprofng with --disable-gprofng * configure: Rebuild. --- diff --git a/configure b/configure index 93d286bb3b7..037576c4f07 100755 --- a/configure +++ b/configure @@ -1547,7 +1547,7 @@ Optional Features: --enable-gold[=ARG] build gold [ARG={default,yes,no}] --enable-ld[=ARG] build ld [ARG={default,yes,no}] - --enable-gprofng[=ARG] build gprofng [ARG={yes,no}] + --disable-gprofng do not build gprofng --enable-compressed-debug-sections={all,gas,gold,ld,none} Enable compressed debug sections for gas, gold or ld by default diff --git a/configure.ac b/configure.ac index 6fd9e77f20a..a2dc9220b7a 100644 --- a/configure.ac +++ b/configure.ac @@ -408,8 +408,7 @@ case "${ENABLE_LD}" in esac AC_ARG_ENABLE(gprofng, -[AS_HELP_STRING([[--enable-gprofng[=ARG]]], - [build gprofng @<:@ARG={yes,no}@:>@])], +[AS_HELP_STRING([[--disable-gprofng]], [do not build gprofng])], enable_gprofng=$enableval, enable_gprofng=yes) if test "$enable_gprofng" = "yes"; then