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 | e652b42836d888a77d5b68a963ab87359128197d (patch) | |
tree | 0897085c5b69cd9760a95a0f6520feded86b5777 /config.guess | |
parent | 2422e3751bb98910928799d376442d73ecfbc5b7 (diff) | |
download | emacs-e652b42836d888a77d5b68a963ab87359128197d.tar.gz |
Generalize C90 alternative to all x90 machines.libc-960715
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 f89f911b709..7adf7df6640 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 |