diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-09-25 13:42:00 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-09-25 13:42:00 +0300 |
commit | 01703124c286b11433ab6da14029d5f54adcb27f (patch) | |
tree | f729812ce75be23d860310a6f55f1cec0cc7bee9 /config.guess | |
parent | 3344e3996d0790e12f89166cfe504f4f2bc8864d (diff) | |
parent | 3e762b6f62061974d152dd251f3e83cacca073e3 (diff) | |
download | egawk-01703124c286b11433ab6da14029d5f54adcb27f.tar.gz egawk-01703124c286b11433ab6da14029d5f54adcb27f.tar.bz2 egawk-01703124c286b11433ab6da14029d5f54adcb27f.zip |
Merge branch 'gawk-4.1-stable' into feature/zOS-try2
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/config.guess b/config.guess index f7eb141e..3c022c5b 100755 --- a/config.guess +++ b/config.guess @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2015 Free Software Foundation, Inc. -timestamp='2015-03-04' +timestamp='2015-09-14' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -221,7 +221,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in release='-gnu' ;; *) - release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: @@ -249,6 +249,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; + *:Sortix:*:*) + echo ${UNAME_MACHINE}-unknown-sortix + exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) @@ -962,6 +965,9 @@ EOF ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; + k1om:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; @@ -1038,7 +1044,7 @@ EOF echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} |