diff options
author | Ian <ian@pomf.net> | 1996-03-15 00:14:04 +0000 |
---|---|---|
committer | Ian <ian@pomf.net> | 1996-03-15 00:14:04 +0000 |
commit | e5ba41ce24110fa6d95bbde3a0f66ed2ed7a7806 (patch) | |
tree | 1cf240c8135cd3899a1f2a82198d30d738b11a29 | |
parent | Thu Mar 14 06:01:07 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu> (diff) | |
download | glibc-cvs/libc-960316.tar.gz glibc-cvs/libc-960316.tar.bz2 glibc-cvs/libc-960316.zip |
Recognize mips-*-sysv*cvs/libc-960316cvs/libc-960315
-rwxr-xr-x | config.guess | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config.guess b/config.guess index afd200a33d..c3c4e799a6 100755 --- a/config.guess +++ b/config.guess @@ -451,6 +451,13 @@ EOF mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit 0 ;; + R3000:*System_V*:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi + exit 0 ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 |