* config.guess (c1-convex-bsd, c32-convex-bsd, c2-convex-bsd)

(c34-convex-bsd, c38-convex-bsd, c4-convex-bsd): Remove Convex
	triplets that are not handled inside the case statement.
This commit is contained in:
Ben Elliston 2014-01-25 10:18:07 +11:00
parent 3bfabc1475
commit 4f43a7a663
2 changed files with 7 additions and 27 deletions

View File

@ -1,3 +1,9 @@
2014-01-25 Ben Elliston <bje@gnu.org>
* config.guess (c1-convex-bsd, c32-convex-bsd, c2-convex-bsd)
(c34-convex-bsd, c38-convex-bsd, c4-convex-bsd): Remove Convex
triplets that are not handled inside the case statement.
2014-01-01 Ben Elliston <bje@gnu.org>
* testsuite/config.guess: Sort.

28
config.guess vendored
View File

@ -2,7 +2,7 @@
# Attempt to guess a canonical system name.
# Copyright 1992-2014 Free Software Foundation, Inc.
timestamp='2014-01-01'
timestamp='2014-01-25'
# 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
@ -1493,32 +1493,6 @@ $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` &&
test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; }
# Convex versions that predate uname can use getsysinfo(1)
if [ -x /usr/convex/getsysinfo ]
then
case `getsysinfo -f cpu_type` in
c1*)
echo c1-convex-bsd
exit ;;
c2*)
if getsysinfo -f scalar_acc
then echo c32-convex-bsd
else echo c2-convex-bsd
fi
exit ;;
c34*)
echo c34-convex-bsd
exit ;;
c38*)
echo c38-convex-bsd
exit ;;
c4*)
echo c4-convex-bsd
exit ;;
esac
fi
cat >&2 <<EOF
$0: unable to guess system type