diff options
author | andreast <andreast@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-04-09 21:50:14 +0000 |
---|---|---|
committer | andreast <andreast@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-04-09 21:50:14 +0000 |
commit | 953498832ff426ee56ca6bd61b895c80f1866e32 (patch) | |
tree | b6c4b0ddc246978491360f2ecb8353808a9319b3 | |
parent | fa59234cc592c331e80010d8d93d59c2475aa9e4 (diff) | |
download | gcc-953498832ff426ee56ca6bd61b895c80f1866e32.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@145860 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 5352988034c..156fb6352b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/configure b/configure index bfb1d6b81f8..c81dbe4fac7 100755 --- a/configure +++ b/configure @@ -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 fd961226481..c0759873f75 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" ;; |