diff options
author | Jack Howarth <howarth@bromo.med.uc.edu> | 2009-04-09 21:50:14 +0000 |
---|---|---|
committer | Andreas Tobler <andreast@gcc.gnu.org> | 2009-04-09 23:50:14 +0200 |
commit | b93133bcea3f7cb738ee03e1bf9b4fdd19c985cb (patch) | |
tree | b6c4b0ddc246978491360f2ecb8353808a9319b3 | |
parent | e1ff19bf801a69ab7ae22ccb2ebd5842d6432a1c (diff) | |
download | gcc-b93133bcea3f7cb738ee03e1bf9b4fdd19c985cb.zip gcc-b93133bcea3f7cb738ee03e1bf9b4fdd19c985cb.tar.gz gcc-b93133bcea3f7cb738ee03e1bf9b4fdd19c985cb.tar.bz2 |
configure.ac: Restore match for darwin9 or later.
2009-04-09 Jack Howarth <howarth@bromo.med.uc.edu>
* configure.ac: Restore match for darwin9 or later. Use double
brackets since regeneration eats one pair.
* configure: Regenerate.
From-SVN: r145860
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2009-04-09 Jack Howarth <howarth@bromo.med.uc.edu> + + * configure.ac: Restore match for darwin9 or later. Use double + brackets since regeneration eats one pair. + * configure: Regenerate. + 2009-04-09 H.J. Lu <hongjiu.lu@intel.com> PR gas/10039 @@ -2215,7 +2215,7 @@ case "${target}" in noconfigdirs="$noconfigdirs ld gas gdb gprof" noconfigdirs="$noconfigdirs sim target-rda" ;; - i[3456789]86-*-darwin* | x86_64-*-darwin9*) + i[3456789]86-*-darwin* | x86_64-*-darwin[912]*) noconfigdirs="$noconfigdirs ld gas gprof" noconfigdirs="$noconfigdirs sim target-rda" ;; diff --git a/configure.ac b/configure.ac index fd96122..c075987 100644 --- a/configure.ac +++ b/configure.ac @@ -450,7 +450,7 @@ case "${target}" in noconfigdirs="$noconfigdirs ld gas gdb gprof" noconfigdirs="$noconfigdirs sim target-rda" ;; - i[[3456789]]86-*-darwin* | x86_64-*-darwin9*) + i[[3456789]]86-*-darwin* | x86_64-*-darwin[[912]]*) noconfigdirs="$noconfigdirs ld gas gprof" noconfigdirs="$noconfigdirs sim target-rda" ;; |