diff options
author | John Gilmore <gnu@cygnus> | 1993-07-09 01:27:26 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1993-07-09 01:27:26 +0000 |
commit | 8d159a48b0809eb8a18cbc783bbacee3e6473973 (patch) | |
tree | 340f7466f76088056e378fb6ab78c97763eb10ca /config.guess | |
parent | 3bf3f99aa757b30b96815e8eaf4e54fd3ffe1def (diff) | |
download | gdb-8d159a48b0809eb8a18cbc783bbacee3e6473973.zip gdb-8d159a48b0809eb8a18cbc783bbacee3e6473973.tar.gz gdb-8d159a48b0809eb8a18cbc783bbacee3e6473973.tar.bz2 |
* configure: Remove extraneous output when guessing host type.
* config.guess: Remove extraneous output when guessing using C
compiler rather than uname, or when guessing fails.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/config.guess b/config.guess index 3cdc586..473132c 100755 --- a/config.guess +++ b/config.guess @@ -145,7 +145,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in && echo i486-ncr-sysv4 && exit 0 ;; esac -echo '(No uname command or uname output not recognized.)' 1>&2 +#echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 cat >dummy.c <<EOF @@ -162,6 +162,10 @@ main() printf("m68k-hp-bsd\n"); exit(0); #endif +#if defined(NeXT) + printf("m68k-next-bsd\n"); exit(0); +#endif + #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf("ns32k-encore-sysv\n"); exit(0); @@ -198,6 +202,6 @@ EOF ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0 rm -f dummy.c dummy -echo '(Unable to guess system type)' 1>&2 +#echo '(Unable to guess system type)' 1>&2 exit 1 |