diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-09-25 13:43:00 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-09-25 13:43:00 +0300 |
commit | 9171a45c5987a61ab5ee83e7ce2cff3f84da24c4 (patch) | |
tree | f0343f34fad79263eb799ab07124515633b3f61a /config.guess | |
parent | 87b62ccaaf45062723a35a4ec222140cd3bfac98 (diff) | |
parent | 53246371c1395de55e1952859e14129226699370 (diff) | |
download | egawk-9171a45c5987a61ab5ee83e7ce2cff3f84da24c4.tar.gz egawk-9171a45c5987a61ab5ee83e7ce2cff3f84da24c4.tar.bz2 egawk-9171a45c5987a61ab5ee83e7ce2cff3f84da24c4.zip |
Merge branch 'master' into feature/cmake
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} |