Commit 72aaffbd by Zack Weinberg Committed by Zack Weinberg

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
parent bbdd639d
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.
......
......@@ -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
......
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