diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-07-03 09:25:46 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-07-03 09:25:46 +0000 |
commit | 3891e7d9126be68d540da8d0f4d44c19bb9473f0 (patch) | |
tree | 1465c3d8c9d622fa0f166f4e3f7010171d3bde18 /configure | |
parent | 5dee13c2069dfdc1be978cb0ee9acf2debb51063 (diff) | |
download | gcc-3891e7d9126be68d540da8d0f4d44c19bb9473f0.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@115146 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 4ea9022568f..8a2b4247a90 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. |