mirror of
git://git.savannah.gnu.org/config.git
synced 2025-05-31 11:36:37 +12:00
2000-07-24 Ben Elliston <bje@redhat.com>
* config.guess: Detect Plan 9.
This commit is contained in:
parent
c21bc010dd
commit
3d2741562b
@ -1,3 +1,7 @@
|
|||||||
|
2000-07-24 Ben Elliston <bje@redhat.com>
|
||||||
|
|
||||||
|
* config.guess: Detect Plan 9.
|
||||||
|
|
||||||
2000-07-06 Andrew Cagney <cagney@b1.cygnus.com>
|
2000-07-06 Andrew Cagney <cagney@b1.cygnus.com>
|
||||||
|
|
||||||
* config.sub: Recognise d30v as a valid basic_machine.
|
* config.sub: Recognise d30v as a valid basic_machine.
|
||||||
|
13
config.guess
vendored
13
config.guess
vendored
@ -3,7 +3,7 @@
|
|||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
|
|
||||||
version='2000-06-13'
|
version='2000-07-24'
|
||||||
|
|
||||||
# This file is free software; you can redistribute it and/or modify it
|
# 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
|
# under the terms of the GNU General Public License as published by
|
||||||
@ -1088,6 +1088,17 @@ EOF
|
|||||||
DS/*:UNIX_System_V:*:*)
|
DS/*:UNIX_System_V:*:*)
|
||||||
echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
|
echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
|
*:Plan9:*:*)
|
||||||
|
# "uname -m" is not consistent, so use $cputype instead. 386
|
||||||
|
# is converted to i386 for consistency with other x86
|
||||||
|
# operating systems.
|
||||||
|
if test "$cputype" = "386"; then
|
||||||
|
UNAME_MACHINE=i386
|
||||||
|
else
|
||||||
|
UNAME_MACHINE="$cputype"
|
||||||
|
fi
|
||||||
|
echo ${UNAME_MACHINE}-unknown-plan9
|
||||||
|
exit 0 ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
#echo '(No uname command or uname output not recognized.)' 1>&2
|
#echo '(No uname command or uname output not recognized.)' 1>&2
|
||||||
|
Loading…
x
Reference in New Issue
Block a user