diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-04 11:16:10 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-04 11:16:10 +0000 |
commit | 5a92bcc2281c19ebbb02a85334d5adc9b06972ac (patch) | |
tree | eea431c52c117424a3849bd24f4999bfa6186be7 | |
parent | 4c8b808dcf1f80b19d374d11f11376674e1e3393 (diff) | |
download | gcc-5a92bcc2281c19ebbb02a85334d5adc9b06972ac.tar.gz |
PR other/35151
* configure.ac: Combine rules for mingw32 and mingw64.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@133892 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 5 | ||||
-rw-r--r-- | configure.ac | 5 |
3 files changed, 8 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog index e47cdfa1b11..ef3043208ec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-04-04 NightStrike <NightStrike@gmail.com> + + PR other/35151 + * configure.ac: Combine rules for mingw32 and mingw64. + * configure: Regenerate. + 2008-04-02 Kai Tietz <kai.tietz@onvision.com> * MAINTAINERS (Write After Approval): Add myself. diff --git a/configure b/configure index 32d003cd354..0fc08b58ede 100755 --- a/configure +++ b/configure @@ -2782,10 +2782,7 @@ case "${host}" in *-cygwin*) host_makefile_frag="config/mh-cygwin" ;; - *-mingw32*) - host_makefile_frag="config/mh-mingw" - ;; - *-mingw64*) + *-mingw*) host_makefile_frag="config/mh-mingw" ;; *-interix*) diff --git a/configure.ac b/configure.ac index f85eb2e72d0..b7be3ad4cdf 100644 --- a/configure.ac +++ b/configure.ac @@ -1044,10 +1044,7 @@ case "${host}" in *-cygwin*) host_makefile_frag="config/mh-cygwin" ;; - *-mingw32*) - host_makefile_frag="config/mh-mingw" - ;; - *-mingw64*) + *-mingw*) host_makefile_frag="config/mh-mingw" ;; *-interix*) |