summaryrefslogtreecommitdiff
path: root/build-aux/config.guess
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-05-28 06:27:57 -0700
committerKarl Berry <karl@freefriends.org>2019-05-28 06:27:57 -0700
commitf8bc6615f354b9a62c5f6e0ff25f2d56f0dc4c0e (patch)
treef0c2b64668a1ce207f8f3ad55ccb2736cb7a9cf5 /build-aux/config.guess
parent9bfa2644feac79b87cc0d78b11ec9c210b78bba5 (diff)
downloadgnulib-f8bc6615f354b9a62c5f6e0ff25f2d56f0dc4c0e.tar.gz
autoupdate
Diffstat (limited to 'build-aux/config.guess')
-rwxr-xr-xbuild-aux/config.guess10
1 files changed, 5 insertions, 5 deletions
diff --git a/build-aux/config.guess b/build-aux/config.guess
index 4cd9454b35..b40e17b137 100755
--- a/build-aux/config.guess
+++ b/build-aux/config.guess
@@ -2,7 +2,7 @@
# Attempt to guess a canonical system name.
# Copyright 1992-2019 Free Software Foundation, Inc.
-timestamp='2019-04-28'
+timestamp='2019-05-28'
# 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
@@ -1325,11 +1325,11 @@ EOF
echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE"
exit ;;
*:Darwin:*:*)
- UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
set_cc_for_build
- if test "$UNAME_PROCESSOR" = unknown ; then
- UNAME_PROCESSOR=powerpc
- fi
+ UNAME_PROCESSOR=`uname -p`
+ case $UNAME_PROCESSOR in
+ unknown) UNAME_PROCESSOR=powerpc ;;
+ esac
if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then
if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \