diff options
author | Per Bothner <bothner@cygnus.com> | 1995-05-15 21:49:34 +0000 |
---|---|---|
committer | Per Bothner <bothner@cygnus.com> | 1995-05-15 21:49:34 +0000 |
commit | 24bb2f62b44769d03862a927593c8e28eede94cb (patch) | |
tree | 8dee26b2499ad4c54021d11a6ed434b50ec4b5db /config.guess | |
parent | 9d6e2c3b39126a16b7c05b44c8a8492d67a9abf8 (diff) | |
download | emacs-24bb2f62b44769d03862a927593c8e28eede94cb.tar.gz |
* config.guess: Recognize Cray90 (from Pete TerMaat).
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/config.guess b/config.guess index 969cec4f19e..41f828ab7b5 100755 --- a/config.guess +++ b/config.guess @@ -288,8 +288,11 @@ EOF echo xmp-cray-unicos exit 0 ;; CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos${UNAME_RELEASE} - exit 0 ;; + echo ymp-cray-unicos${UNAME_RELEASE} + exit 0 ;; + CRAY*C90:*:*:*) + echo c90-cray-unicos${UNAME_RELEASE} + exit 0 ;; CRAY-2:*:*:*) echo cray2-cray-unicos exit 0 ;; |