diff options
author | Vladimir Mezentsev <vladimir.mezentsev@oracle.com> | 2024-10-31 17:23:26 -0700 |
---|---|---|
committer | Vladimir Mezentsev <vladimir.mezentsev@oracle.com> | 2024-11-01 16:32:33 -0700 |
commit | e0c182c3acd510dcfefbe1ff2d5b66106cafcf3f (patch) | |
tree | c16710940fb28aeb443fbde69d1ff5993710523a | |
parent | 47c88752f9adf3815566ae52731867a3bb87b044 (diff) | |
download | binutils-e0c182c3acd510dcfefbe1ff2d5b66106cafcf3f.zip binutils-e0c182c3acd510dcfefbe1ff2d5b66106cafcf3f.tar.gz binutils-e0c182c3acd510dcfefbe1ff2d5b66106cafcf3f.tar.bz2 |
Fix 32303 ./configure --help: replace --enable-gprofng with --disable-gprofng
ChangeLog
2024-10-31 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
PR 32303
* configure.ac: Replace --enable-gprofng with --disable-gprofng
* configure: Rebuild.
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 3 |
2 files changed, 2 insertions, 3 deletions
@@ -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 6fd9e77..a2dc922 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 |