Commit b6348cb3 by Paolo Bonzini Committed by Paolo Bonzini

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
parent 1546bb64
2006-07-03 Paolo Bonzini <bonzini@gnu.org> 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 PR other/27063
* configure.in: Test subdir_requires and give an appropriate * configure.in: Test subdir_requires and give an appropriate
error message. error message.
......
...@@ -2479,7 +2479,7 @@ if test -d ${srcdir}/gcc; then ...@@ -2479,7 +2479,7 @@ if test -d ${srcdir}/gcc; then
# Disable languages that need other directories if these aren't available. # Disable languages that need other directories if these aren't available.
for i in $subdir_requires .; do for i in $subdir_requires .; do
test -d gcc/$i && continue test -f "$srcdir/gcc/$i/config-lang.in" && continue
case ,${enable_languages}, in case ,${enable_languages}, in
*,${language},*) *,${language},*)
# Specifically requested language; tell them. # Specifically requested language; tell them.
......
...@@ -1255,7 +1255,7 @@ if test -d ${srcdir}/gcc; then ...@@ -1255,7 +1255,7 @@ if test -d ${srcdir}/gcc; then
# Disable languages that need other directories if these aren't available. # Disable languages that need other directories if these aren't available.
for i in $subdir_requires .; do for i in $subdir_requires .; do
test -d gcc/$i && continue test -f "$srcdir/gcc/$i/config-lang.in" && continue
case ,${enable_languages}, in case ,${enable_languages}, in
*,${language},*) *,${language},*)
# Specifically requested language; tell them. # Specifically requested language; tell them.
......
2006-07-03 Paolo Bonzini <bonzini@gnu.org> 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 PR other/27063
* configure.ac (for lang...): Simplify nesting of conditionals. * configure.ac (for lang...): Simplify nesting of conditionals.
Test subdir_requires for non-enabled languages. Move processing Test subdir_requires for non-enabled languages. Move processing
......
...@@ -16040,7 +16040,7 @@ do ...@@ -16040,7 +16040,7 @@ do
*,$lang_alias,*) ;; *,$lang_alias,*) ;;
*) *)
for i in $subdir_requires; do for i in $subdir_requires; do
test -d "$i" && continue test -f "${srcdir}/$i/config-lang.in" && continue
ok=false ok=false
break break
done done
......
...@@ -3384,7 +3384,7 @@ changequote([,])dnl ...@@ -3384,7 +3384,7 @@ changequote([,])dnl
*,$lang_alias,*) ;; *,$lang_alias,*) ;;
*) *)
for i in $subdir_requires; do for i in $subdir_requires; do
test -d "$i" && continue test -f "${srcdir}/$i/config-lang.in" && continue
ok=false ok=false
break break
done done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment