aboutsummaryrefslogtreecommitdiffstats
path: root/config.guess
diff options
context:
space:
mode:
authorRichard Kenner <[email protected]>1994-12-21 20:51:03 +0000
committerRichard Kenner <[email protected]>1994-12-21 20:51:03 +0000
commitdf6cf70cd7a30b945df1ed7246b2748af5c069b6 (patch)
tree039e96f91d42ddfce4efe70bbc7d501682861fd6 /config.guess
parent191cda94a8a5d4bdc42e0d19c40f4ed3cf3f06d0 (diff)
(sun4:SunOS:*:*): Handle Solbourne OS/MP systems.
Diffstat (limited to 'config.guess')
-rwxr-xr-xconfig.guess5
1 files changed, 5 insertions, 0 deletions
diff --git a/config.guess b/config.guess
index c96a20ac4e..89496c7adb 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 ;;