diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-10-30 13:30:15 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-10-30 13:30:15 +0000 |
commit | 680db949c63693266539153d9ba73a852418a9b8 (patch) | |
tree | fd6ea824e6baf39207b071f971dd55823e49dc58 /bfd/configure | |
parent | 3bfcb6528e6fb6a324b2e119f50f72a0674a1402 (diff) | |
download | gdb-680db949c63693266539153d9ba73a852418a9b8.zip gdb-680db949c63693266539153d9ba73a852418a9b8.tar.gz gdb-680db949c63693266539153d9ba73a852418a9b8.tar.bz2 |
Handle --enable-64-bit-bfd when setting CORE_HEADER
* configure.in: Also handle --enable-64-bit-bfd when setting
CORE_HEADER for 'i[3-7]86-*-linux-*'.
Diffstat (limited to 'bfd/configure')
-rwxr-xr-x | bfd/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/configure b/bfd/configure index 427e5c1..43bff03 100755 --- a/bfd/configure +++ b/bfd/configure @@ -13927,8 +13927,8 @@ if test "${target}" = "${host}"; then i[3-7]86-*-linux-*) COREFILE=trad-core.lo TRAD_HEADER='"hosts/i386linux.h"' - case "$enable_targets" in - *x86_64-*linux*) + case "$enable_targets"-"$want64" in + *x86_64-*linux*|*-true) CORE_HEADER='"hosts/x86-64linux.h"' esac ;; |