diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-10-22 07:44:05 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-10-22 07:44:05 -0700 |
commit | 9b4c123c959085bb11a1e8126242a79d9de18995 (patch) | |
tree | 8f96d2b1cbd295c640af07ea62b4e3d4eff12a04 /ld/configure.ac | |
parent | c287bfe4297ec9c12db292fae5562be1758cf14f (diff) | |
download | gdb-9b4c123c959085bb11a1e8126242a79d9de18995.zip gdb-9b4c123c959085bb11a1e8126242a79d9de18995.tar.gz gdb-9b4c123c959085bb11a1e8126242a79d9de18995.tar.bz2 |
Properly check --enable-compressed-debug-sections={yes,all}
gas/
* configure.ac: Properly check
--enable-compressed-debug-sections={yes,all}.
* configure: Regenerated.
ld/
* configure.ac: Properly check
--enable-compressed-debug-sections={yes,all}.
* configure: Regenerated.
Diffstat (limited to 'ld/configure.ac')
-rw-r--r-- | ld/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/configure.ac b/ld/configure.ac index 84d1b03..188172d 100644 --- a/ld/configure.ac +++ b/ld/configure.ac @@ -151,7 +151,7 @@ AC_ARG_ENABLE(compressed_debug_sections, AS_HELP_STRING([--enable-compressed-debug-sections={all,ld,none}], [compress debug sections by default])], [case ,"${enableval}", in - *,yes,* | *,all,* | *,ld,*) ac_default_compressed_debug_sections=yes ;; + ,yes, | ,all, | *,ld,*) ac_default_compressed_debug_sections=yes ;; ,no, | ,none,) ac_default_compressed_debug_sections=no ;; esac])dnl |