aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1993-07-09 01:27:26 +0000
committerJohn Gilmore <gnu@cygnus>1993-07-09 01:27:26 +0000
commit8d159a48b0809eb8a18cbc783bbacee3e6473973 (patch)
tree340f7466f76088056e378fb6ab78c97763eb10ca
parent3bf3f99aa757b30b96815e8eaf4e54fd3ffe1def (diff)
downloadfsf-binutils-gdb-8d159a48b0809eb8a18cbc783bbacee3e6473973.zip
fsf-binutils-gdb-8d159a48b0809eb8a18cbc783bbacee3e6473973.tar.gz
fsf-binutils-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.
-rw-r--r--ChangeLog6
-rwxr-xr-xconfig.guess8
-rwxr-xr-xconfigure6
3 files changed, 14 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index e79794c..e046269 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Jul 8 18:26:12 1993 John Gilmore (gnu@cygnus.com)
+
+ * 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.
+
Wed Jul 7 17:58:14 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
* Makefile.in: remove all.cross and install.cross targets
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
diff --git a/configure b/configure
index f36d2be..0ed2039 100755
--- a/configure
+++ b/configure
@@ -323,11 +323,9 @@ case "${fatal}" in
echo '***' Can only configure for one host and one target at a time. 1>&2
fatal=yes
elif [ -z "${host_alias}" -a -z "${undefs}" ] ; then
- echo '- You did not tell me what kind of host system you want to configure.
-- I will attempt to guess the kind of system this is.' 1>&2
guesssys=`echo ${progname} | sed 's/configure$/config.guess/'`
if tmp_alias=`${guesssys}` ; then
- echo "- Looks like this is a ${tmp_alias}" 1>&2
+ echo "Configuring for a ${tmp_alias} host." 1>&2
host_alias=${tmp_alias}
case "${target_alias}" in
"") target_alias=${tmp_alias} ;;
@@ -335,7 +333,7 @@ case "${fatal}" in
esac
arguments="--host=${host_alias} ${arguments}"
else
- echo '- Failed to guess the system type. You need to tell me.' 1>&2
+ echo 'Config.guess failed to determine the host type. You need to specify one.' 1>&2
fatal=yes
fi
else