* configure.in: Don't issue warnings about directories which are
authorIan Lance Taylor <ian@airs.com>
Thu, 6 Jan 1994 21:11:10 +0000 (21:11 +0000)
committerIan Lance Taylor <ian@airs.com>
Thu, 6 Jan 1994 21:11:10 +0000 (21:11 +0000)
not being configued if -norecursion is set.

ChangeLog
configure.in

index 2c8f0b1b69dbd01e492234d482b5681c633d7eb4..fa0d4c25d1e068dc497aea0d89dbbacd51dad5d0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 Thu Jan  6 11:20:57 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
 
+       * configure.in: Don't issue warnings about directories which are
+       not being configued if -norecursion is set.
+
        * configure.in: Don't build gas for alpha-dec-osf1*.
 
 Tue Jan  4 17:10:19 1994  Stu Grossman  (grossman at cygnus.com)
index 586eb030f162219663277c52d7f74c1d631add5a..d5657915265c2c0465666aef020abcd03f5435b2 100644 (file)
@@ -279,7 +279,7 @@ done
 # FSF releases, it's important to let people know when their machine isn't
 # supported by the one or two programs in a package.
 
-if [ x"${notsupp}" != x ]; then
+if [ -n "${notsupp}" ] && [ -z "${norecursion}" ]; then
   echo "*** This configuration is not supported in the following subdirectories:" 1>&2
   echo "    ${notsupp}" 1>&2
   echo "    (Any other directories should still work fine.)" 1>&2
This page took 0.029593 seconds and 4 git commands to generate.