diff options
author | Jim Wilson <wilson@cygnus.com> | 1999-05-24 20:32:23 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1999-05-24 13:32:23 -0700 |
commit | 590e30e761c43b00bcfb75d853947a65e1823c62 (patch) | |
tree | 6a4bdc8f9a8e07b863cf66c5d533288226ac897a /gcc/configure | |
parent | 9fc0706f3ea3085393e954cbc7d2d179545ff762 (diff) | |
download | gcc-590e30e761c43b00bcfb75d853947a65e1823c62.zip gcc-590e30e761c43b00bcfb75d853947a65e1823c62.tar.gz gcc-590e30e761c43b00bcfb75d853947a65e1823c62.tar.bz2 |
Fix aix --with-gnu-ld configuration bug.
* configure.in (rs6000-ibm-aix4.[12]*): Delete use of aix41-gld.h.
Add use of x-aix41-gld.
From-SVN: r27130
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/configure b/gcc/configure index 5c44d85..04c63e7 100755 --- a/gcc/configure +++ b/gcc/configure @@ -5229,19 +5229,19 @@ for machine in $build $host $target; do use_collect2=yes ;; rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*) - if test "$gnu_ld" = yes - then - tm_file=rs6000/aix41-gld.h - else - tm_file=rs6000/aix41.h - fi + tm_file=rs6000/aix41.h if test x$host != x$target then tmake_file=rs6000/t-xnewas else tmake_file=rs6000/t-newas fi - xmake_file=rs6000/x-aix41 + if test "$gnu_ld" = yes + then + xmake_file=rs6000/x-aix41-gld + else + xmake_file=rx6000/x-aix41 + fi float_format=none use_collect2=yes ;; |