configure: test for config.sub with "config.sub sun4" rather than
authorK. Richard Pixley <rich@cygnus>
Tue, 21 Apr 1992 19:33:13 +0000 (19:33 +0000)
committerK. Richard Pixley <rich@cygnus>
Tue, 21 Apr 1992 19:33:13 +0000 (19:33 +0000)
"config.sub ${host_alias}".  Otherwise we can't tell a bad host alias
from a missing config.sub.

ChangeLog
configure

index 90c276303405de3ce1697f89cad688b71484e447..482c71e4ed563322f2fccdc1c7480cff7c697034 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Apr 21 12:31:33 1992  K. Richard Pixley  (rich@cygnus.com)
+
+       * configure: test for config.sub with "config.sub sun4" rather
+         than "config.sub ${host_alias}".  Otherwise we can't tell a bad
+         host alias from a missing config.sub.
+
 Mon Apr 20 18:16:36 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
 
        * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
index d8d44a836329e22b780b069e5abd55fb6a58aeb8..97cf431ccad45241cc60e51f343607f2a33b521a 100755 (executable)
--- a/configure
+++ b/configure
@@ -324,7 +324,8 @@ fi
 
 configsub=`echo ${progname} | sed 's/configure$/config.sub/'`
 
-if ${configsub} `echo ${host_alias} | sed -e 's/ .*//'` >/dev/null 2>&1 ; then
+# this is a hack.  sun4 must always be a valid host alias or this will fail.
+if ${configsub} sun4 >/dev/null 2>&1 ; then
        true
 else
        echo '***' cannot find config.sub.  1>&2