diff options
author | Arnaud Patard <apatard@mandriva.com> | 2009-04-08 13:14:13 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2009-04-08 13:14:13 +0000 |
commit | 020e3d027a081053ec8dee92d1ea45b966a312d8 (patch) | |
tree | 05458941c2447b7cdd0956847d02b9284e95f5be | |
parent | 4c8a5bb885c0ce4805dd78c8fd005daa5762db72 (diff) | |
download | gcc-020e3d027a081053ec8dee92d1ea45b966a312d8.zip gcc-020e3d027a081053ec8dee92d1ea45b966a312d8.tar.gz gcc-020e3d027a081053ec8dee92d1ea45b966a312d8.tar.bz2 |
configure.ac: Fix Linux/MIPS matching rule.
2009-04-07 Arnaud Patard <apatard@mandriva.com>
* libiberty/configure.ac: Fix Linux/MIPS matching rule.
* libiberty/configure: Regenerate.
From-SVN: r145726
-rw-r--r-- | libiberty/ChangeLog | 5 | ||||
-rwxr-xr-x | libiberty/configure | 2 | ||||
-rw-r--r-- | libiberty/configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 141246a..2e0a27c 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2009-04-07 Arnaud Patard <apatard@mandriva.com> + + * libiberty/configure.ac: Fix Linux/MIPS matching rule. + * libiberty/configure: Regenerate. + 2008-03-27 Ian Lance Taylor <iant@google.com> * memmem.c: New file, from gnulib. diff --git a/libiberty/configure b/libiberty/configure index 4d0aeae..ee8fbb0 100755 --- a/libiberty/configure +++ b/libiberty/configure @@ -4112,7 +4112,7 @@ if [ "${shared}" = "yes" ]; then i[34567]86-*-* | x86_64-*-*) PICFLAG=-fpic ;; m68k-*-*) PICFLAG=-fpic ;; - mips*-*-linux) PICFLAG=-fPIC ;; + mips*-*-linux*) PICFLAG=-fPIC ;; powerpc*-*-aix*) ;; powerpc*-*-*) PICFLAG=-fPIC ;; sparc*-*-*) case "${CFLAGS}" in diff --git a/libiberty/configure.ac b/libiberty/configure.ac index 7d167c3..6cfe335 100644 --- a/libiberty/configure.ac +++ b/libiberty/configure.ac @@ -209,7 +209,7 @@ if [[ "${shared}" = "yes" ]]; then i[[34567]]86-*-* | x86_64-*-*) PICFLAG=-fpic ;; m68k-*-*) PICFLAG=-fpic ;; - mips*-*-linux) PICFLAG=-fPIC ;; + mips*-*-linux*) PICFLAG=-fPIC ;; powerpc*-*-aix*) ;; powerpc*-*-*) PICFLAG=-fPIC ;; sparc*-*-*) case "${CFLAGS}" in |