diff options
author | Richard Kenner <kenner@gnu.org> | 1994-12-21 20:51:03 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gnu.org> | 1994-12-21 20:51:03 +0000 |
commit | 51dd664607cfe0b9b24d7a44005ab24f3446294a (patch) | |
tree | b85cc6ae36e013514813c42d10b8ee78cbe33954 /config.guess | |
parent | 536df100a6648bcf0b80f1a64222a22b4977e939 (diff) | |
download | emacs-51dd664607cfe0b9b24d7a44005ab24f3446294a.tar.gz |
(sun4:SunOS:*:*): Handle Solbourne OS/MP systems.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config.guess b/config.guess index c96a20ac4e5..89496c7adb0 100755 --- a/config.guess +++ b/config.guess @@ -79,6 +79,11 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit 0 ;; |