mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
* config.guess: Recognize SunOS6 as Solaris3.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Wed May 26 09:40:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
|
* config.guess: Recognize SunOS6 as Solaris3.
|
||||||
|
|
||||||
Tue May 25 23:03:11 1993 Per Bothner (bothner@cygnus.com)
|
Tue May 25 23:03:11 1993 Per Bothner (bothner@cygnus.com)
|
||||||
|
|
||||||
* config.guess: Fix typo. Avoid #elif (not in K&R 1).
|
* config.guess: Fix typo. Avoid #elif (not in K&R 1).
|
||||||
|
6
config.guess
vendored
6
config.guess
vendored
@ -43,6 +43,12 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
|
|||||||
sun4*:SunOS:5.*:*)
|
sun4*:SunOS:5.*:*)
|
||||||
echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
|
echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
|
sun4*:SunOS:6*:*)
|
||||||
|
# According to config.sub, this is the proper way to canonicalize
|
||||||
|
# SunOS6. Hard to guess exactly what SunOS6 will be like, but
|
||||||
|
# it's likely to be more like Solaris than SunOS4.
|
||||||
|
echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
|
||||||
|
exit 0 ;;
|
||||||
sun4*:SunOS:*:*)
|
sun4*:SunOS:*:*)
|
||||||
echo sparc-sun-sunos${UNAME_RELEASE}
|
echo sparc-sun-sunos${UNAME_RELEASE}
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
|
Reference in New Issue
Block a user