aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Bonzini <bonzini@gnu.org>2006-07-03 09:25:46 +0000
committerPaolo Bonzini <bonzini@gcc.gnu.org>2006-07-03 09:25:46 +0000
commitb6348cb338699592e994337a8560d61c8de99dc1 (patch)
tree1465c3d8c9d622fa0f166f4e3f7010171d3bde18
parent1546bb648faaf18d273d738eed03f1f3efd72de7 (diff)
downloadgcc-b6348cb338699592e994337a8560d61c8de99dc1.zip
gcc-b6348cb338699592e994337a8560d61c8de99dc1.tar.gz
gcc-b6348cb338699592e994337a8560d61c8de99dc1.tar.bz2
configure.in: Fix thinko in previous check-in.
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
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
-rw-r--r--gcc/ChangeLog5
-rwxr-xr-xgcc/configure2
-rw-r--r--gcc/configure.ac2
6 files changed, 14 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index c680560..e86d85b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
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
* configure.in: Test subdir_requires and give an appropriate
error message.
diff --git a/configure b/configure
index 4ea9022..8a2b424 100755
--- 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.
diff --git a/configure.in b/configure.in
index b472484..9bd367d 100644
--- a/configure.in
+++ b/configure.in
@@ -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.
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index bec254e..690d4d9 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,10 @@
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
* configure.ac (for lang...): Simplify nesting of conditionals.
Test subdir_requires for non-enabled languages. Move processing
diff --git a/gcc/configure b/gcc/configure
index 1c514e4..b7564bc 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -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
diff --git a/gcc/configure.ac b/gcc/configure.ac
index ee63296..a68769b 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -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