diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-11 22:36:06 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-11 22:36:06 +0000 |
commit | 6563ae0c6d71bf7d4d523149cec516438ae07614 (patch) | |
tree | c3c5d757d5d4dc13ef818b713afb3bdb22a26297 /config.guess | |
parent | baa67b8d53a39efd550fcbd1cf21a72e1c3a8652 (diff) | |
download | gcc-6563ae0c6d71bf7d4d523149cec516438ae07614.tar.gz |
* config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
and mingw32.
Bring over from devo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19686 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.guess b/config.guess index e65adcc8178..583439ef06b 100755 --- a/config.guess +++ b/config.guess @@ -483,10 +483,10 @@ EOF echo ${UNAME_MACHINE}-unknown-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` exit 0 ;; i*:CYGWIN*:*) - echo i386-pc-cygwin32 + echo ${UNAME_MACHINE}-pc-cygwin32 exit 0 ;; i*:MINGW*:*) - echo i386-pc-mingw32 + echo ${UNAME_MACHINE}-pc-mingw32 exit 0 ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin32 |