configure.in: Don't add $outputs to all_lang_makefiles.
* configure.in: Don't add $outputs to all_lang_makefiles. Add $srcdir/$s/Makefile.in if it exists. * configure: Regenerate. From-SVN: r37399
This commit is contained in:
parent
bbdd639d33
commit
72aaffbd37
3 changed files with 14 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2000-11-11 Zack Weinberg <zack@wolery.stanford.edu>
|
||||
|
||||
* configure.in: Don't add $outputs to all_lang_makefiles. Add
|
||||
$srcdir/$s/Makefile.in if it exists.
|
||||
* configure: Regenerate.
|
||||
|
||||
Sat Nov 11 18:41:20 2000 Mark P Mitchell <mark@codesourcery.com>
|
||||
|
||||
* fixinc/mkfixinc.sh: Use the ordinary fixincludes on IRIX.
|
||||
|
|
5
gcc/configure
vendored
5
gcc/configure
vendored
|
@ -9585,7 +9585,10 @@ do
|
|||
echo "${srcdir}/$s/config-lang.in doesn't set \$language." 1>&2
|
||||
exit 1
|
||||
fi
|
||||
all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Make-lang.in $outputs"
|
||||
all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Make-lang.in"
|
||||
if test -f ${srcdir}/$s/Makefile.in
|
||||
then all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Makefile.in"
|
||||
fi
|
||||
all_languages="$all_languages $language"
|
||||
if test "x$boot_language" = xyes
|
||||
then
|
||||
|
|
|
@ -5033,7 +5033,10 @@ do
|
|||
echo "${srcdir}/$s/config-lang.in doesn't set \$language." 1>&2
|
||||
exit 1
|
||||
fi
|
||||
all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Make-lang.in $outputs"
|
||||
all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Make-lang.in"
|
||||
if test -f ${srcdir}/$s/Makefile.in
|
||||
then all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Makefile.in"
|
||||
fi
|
||||
all_languages="$all_languages $language"
|
||||
if test "x$boot_language" = xyes
|
||||
then
|
||||
|
|
Loading…
Add table
Reference in a new issue