diff options
author | Torbjorn Granlund <tege@swox.com> | 1996-07-14 18:09:15 +0000 |
---|---|---|
committer | Torbjorn Granlund <tege@swox.com> | 1996-07-14 18:09:15 +0000 |
commit | 939d5646d18b178c5a46aa38a0c77b311dbbcb1a (patch) | |
tree | f82a2425976f8ef8ce882105a78b2e233d9d6d69 /config.guess | |
parent | a78b0f182749b9e22047193987dc537927009f52 (diff) | |
download | glibc-939d5646d18b178c5a46aa38a0c77b311dbbcb1a.tar.gz glibc-939d5646d18b178c5a46aa38a0c77b311dbbcb1a.tar.xz glibc-939d5646d18b178c5a46aa38a0c77b311dbbcb1a.zip |
Generalize C90 alternative to all x90 machines.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config.guess b/config.guess index f89f911b70..7adf7df664 100755 --- a/config.guess +++ b/config.guess @@ -320,8 +320,9 @@ EOF CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} exit 0 ;; - CRAY*C90:*:*:*) - echo c90-cray-unicos${UNAME_RELEASE} + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' | tr A-Z a-z exit 0 ;; CRAY-2:*:*:*) echo cray2-cray-unicos |