mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
* config.guess: Added special check for i[34]86-unixware-sysv4*.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Thu May 27 08:05:31 1993 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
|
* config.guess: Added special check for i[34]86-unixware-sysv4*.
|
||||||
|
|
||||||
Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com)
|
Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
* config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
|
* config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
|
||||||
|
6
config.guess
vendored
6
config.guess
vendored
@ -113,7 +113,11 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
|
|||||||
echo ${UNAME_MACHINE}-unknown-linux
|
echo ${UNAME_MACHINE}-unknown-linux
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
i[34]86:UNIX_SV:4.*:*)
|
i[34]86:UNIX_SV:4.*:*)
|
||||||
echo ${UNAME_MACHINE}-unknown-sysv4
|
if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
|
||||||
|
echo ${UNAME_MACHINE}-unixware-sysv${UNAME_RELEASE}
|
||||||
|
else
|
||||||
|
echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}
|
||||||
|
fi
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
i[34]86:*:3.2:*)
|
i[34]86:*:3.2:*)
|
||||||
if /bin/uname -X 2>/dev/null >/dev/null ; then
|
if /bin/uname -X 2>/dev/null >/dev/null ; then
|
||||||
|
Reference in New Issue
Block a user