]> gcc.gnu.org Git - gcc.git/commitdiff
configure.in: Fix thinko in previous check-in.
authorPaolo Bonzini <bonzini@gnu.org>
Mon, 3 Jul 2006 09:25:46 +0000 (09:25 +0000)
committerPaolo Bonzini <bonzini@gcc.gnu.org>
Mon, 3 Jul 2006 09:25:46 +0000 (09:25 +0000)
2006-07-03  Paolo Bonzini  <bonzini@gnu.org>

* configure.in: Fix thinko in previous check-in.
* configure: Regenerate.

gcc:
2006-07-03  Paolo Bonzini  <bonzini@gnu.org>

* configure.ac: Fix thinko in previous check-in.
* configure: Regenerate.

From-SVN: r115146

ChangeLog
configure
configure.in
gcc/ChangeLog
gcc/configure
gcc/configure.ac

index c680560ae0f1d68db5a678330260fbcec55a5ae7..e86d85bffdc1de908bc1ca78cf6cb0ab98fdb8dc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-07-03  Paolo Bonzini  <bonzini@gnu.org>
+
+       * configure.in: Fix thinko in previous check-in.
+       * configure: Regenerate.
+
 2006-07-03  Paolo Bonzini  <bonzini@gnu.org>
 
        PR other/27063
index 4ea9022568fa5d4527222cd5a0f0a9b2d0b51741..8a2b4247a90411467206e6a7b3e24068aa9cf231 100755 (executable)
--- a/configure
+++ b/configure
@@ -2479,7 +2479,7 @@ if test -d ${srcdir}/gcc; then
 
         # Disable languages that need other directories if these aren't available.
        for i in $subdir_requires .; do
-         test -d gcc/$i && continue
+         test -f "$srcdir/gcc/$i/config-lang.in" && continue
          case ,${enable_languages}, in
             *,${language},*)
               # Specifically requested language; tell them.
index b472484116ea724ef614566302e6231626ac9290..9bd367de801a31a4f95cee088d845ddab3ce467c 100644 (file)
@@ -1255,7 +1255,7 @@ if test -d ${srcdir}/gcc; then
 
         # Disable languages that need other directories if these aren't available.
        for i in $subdir_requires .; do
-         test -d gcc/$i && continue
+         test -f "$srcdir/gcc/$i/config-lang.in" && continue
          case ,${enable_languages}, in
             *,${language},*)
               # Specifically requested language; tell them.
index bec254e2b3f6e511e40d036991ede79f79945f53..690d4d9955ee0b473f3a62d4d7763821a97fb8b1 100644 (file)
@@ -1,3 +1,8 @@
+2006-07-03  Paolo Bonzini  <bonzini@gnu.org>
+
+       * configure.ac: Fix thinko in previous check-in.
+       * configure: Regenerate.
+
 2006-07-03  Paolo Bonzini  <bonzini@gnu.org>
 
        PR other/27063
index 1c514e498d8c2990612ea6d740edd276faaeb52d..b7564bcd6db96801d296fbaa0e31a750d65b8b9a 100755 (executable)
@@ -16040,7 +16040,7 @@ do
                *,$lang_alias,*) ;;
                *)
                        for i in $subdir_requires; do
-                               test -d "$i" && continue
+                               test -f "${srcdir}/$i/config-lang.in" && continue
                                ok=false
                                break
                        done
index ee6329655a0b8997bc4658121a0ea2b3d5f0a78b..a68769b4b1d675ba3843844aaca669be9f5a1cf9 100644 (file)
@@ -3384,7 +3384,7 @@ changequote([,])dnl
                *,$lang_alias,*) ;;
                *)
                        for i in $subdir_requires; do
-                               test -d "$i" && continue
+                               test -f "${srcdir}/$i/config-lang.in" && continue
                                ok=false
                                break
                        done
This page took 0.114911 seconds and 5 git commands to generate.