diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-29 21:31:23 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-29 21:31:23 +0000 |
commit | 38e8a8c63b128f956d38296aac1522bf873533d7 (patch) | |
tree | 3565ff9c97c86820ede663ea2f5a1e955cccbf64 /libjava/configure.in | |
parent | f680ef5cf93ac24e1e2db653ef5952ba80b70975 (diff) | |
download | gcc-38e8a8c63b128f956d38296aac1522bf873533d7.tar.gz |
* configure: Rebuilt.
* configure.in: Only add multilib support code if we just rebuilt
top-level Makefile.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42693 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/configure.in')
-rw-r--r-- | libjava/configure.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libjava/configure.in b/libjava/configure.in index 0c36ee1b440..bdd933922c8 100644 --- a/libjava/configure.in +++ b/libjava/configure.in @@ -820,9 +820,12 @@ AC_SUBST(here) AC_SUBST(GCJFLAGS) AC_OUTPUT(Makefile libgcj.spec libgcj-test.spec gnu/classpath/Configuration.java gcj/Makefile include/Makefile testsuite/Makefile, -[if test -n "$CONFIG_FILES"; then - ac_file=Makefile . ${libgcj_basedir}/../config-ml.in -fi +[# Only add multilib support code if we just rebuilt top-level Makefile. +case " $CONFIG_FILES " in + *" Makefile "*) + ac_file=Makefile . ${libgcj_basedir}/../config-ml.in + ;; +esac # Make subdirectories and `.d' files. Look in both srcdir and # builddir for the .java files. |