1999-09-17 Erez Zadok <ezk@cs.columbia.edu>

* config.guess: Eliminate the trailing dot if ${UNAME_RELEASE} is
	1.4-<SOMETHING>. Fix for autoconf/22.
This commit is contained in:
Ben Elliston 1999-09-16 23:22:16 +00:00
parent 26d35b5f5a
commit c9457df95e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
1999-09-17 Erez Zadok <ezk@cs.columbia.edu>
* config.guess: Eliminate the trailing dot if ${UNAME_RELEASE} is
1.4-<SOMETHING>. Fix for autoconf/22.
1999-09-15 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
Fix for autoconf/28.

2
config.guess vendored
View File

@ -591,7 +591,7 @@ EOF
echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
exit 0 ;;
*:NetBSD:*:*)
echo ${UNAME_MACHINE}-unknown-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
echo ${UNAME_MACHINE}-unknown-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*//'`
exit 0 ;;
*:OpenBSD:*:*)
echo ${UNAME_MACHINE}-unknown-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`