aboutsummaryrefslogtreecommitdiffstats
path: root/config.guess
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-05-23 21:03:12 +0300
committerArnold D. Robbins <arnold@skeeve.com>2018-05-23 21:03:12 +0300
commit524c41752a1043dce23fdb7e5893ad89c0944c92 (patch)
treeaf3782eaf1c8c0f06fe7c30fa6a5a9cd03e3c49a /config.guess
parentf8b85504fb4ee3a168abb7914b5725426f5e2fa7 (diff)
downloadegawk-524c41752a1043dce23fdb7e5893ad89c0944c92.tar.gz
egawk-524c41752a1043dce23fdb7e5893ad89c0944c92.tar.bz2
egawk-524c41752a1043dce23fdb7e5893ad89c0944c92.zip
Update some infrastructure files.
Diffstat (limited to 'config.guess')
-rwxr-xr-xconfig.guess6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.guess b/config.guess
index 256083a7..883a6713 100755
--- a/config.guess
+++ b/config.guess
@@ -2,7 +2,7 @@
# Attempt to guess a canonical system name.
# Copyright 1992-2018 Free Software Foundation, Inc.
-timestamp='2018-03-08'
+timestamp='2018-05-19'
# 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
@@ -106,7 +106,7 @@ trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
{ echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
dummy=$tmp/dummy ;
tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
-case $CC_FOR_BUILD,$HOST_CC,$CC in
+case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in
,,) echo "int x;" > "$dummy.c" ;
for c in cc gcc c89 c99 ; do
if ($c -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then
@@ -237,7 +237,7 @@ case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in
# Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
# contains redundant information, the shorter form:
# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
- echo "$machine-${os}${release}${abi}"
+ echo "$machine-${os}${release}${abi-}"
exit ;;
*:Bitrig:*:*)
UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`