find config.subr again
authorK. Richard Pixley <rich@cygnus>
Fri, 13 Dec 1991 09:38:48 +0000 (09:38 +0000)
committerK. Richard Pixley <rich@cygnus>
Fri, 13 Dec 1991 09:38:48 +0000 (09:38 +0000)
ChangeLog
configure

index 0d2afac9ff99ef23f016b0b507950562ba157d42..0135372a46bd2b6854c9ce1f527905a9e2c1e253 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 Fri Dec 13 01:17:06 1991  K. Richard Pixley  (rich at cygnus.com)
 
+       * configure: find config.subr again now that configuration "none"
+         has gone.
+
        * config.subr: resync from rms.
 
 Wed Dec 11 22:25:20 1991  K. Richard Pixley  (rich at rtl.cygnus.com)
index d764560875b0efc71a348065aa3b0b93258c1134..a7c5e5985dd8fe280732812d8d9699826e4cba77 100755 (executable)
--- a/configure
+++ b/configure
@@ -117,15 +117,6 @@ else
        PATH=$PATH:${PWD} ; export PATH
 fi
 
-configsubr=`echo ${progname} | sed 's/configure$/config.subr/'`
-
-if ${configsubr} none >/dev/null 2>&1 ; then
-       true
-else
-       echo '***' cannot find config.subr.
-       echo 1
-fi
-
 for arg in $*;
 do
        # handle things that might have args following as separate words
@@ -363,6 +354,15 @@ if [ -n "${fatal}" -o "${hosts}" = "help" ] ; then
        exit 1
 fi
 
+configsubr=`echo ${progname} | sed 's/configure$/config.subr/'`
+
+if (${configsubr} `echo ${hosts} | sed -e 's/ .*//'`) >/dev/null 2>&1 ; then
+       true
+else
+       echo '***' cannot find config.subr.
+       exit 1
+fi
+
 if [ -z "${srcdir}" ] ; then
        if [ -r configure.in ] ; then
                srcdir=.
This page took 0.025754 seconds and 4 git commands to generate.