Commit 8d3f82aa by Andreas Schwab Committed by Andreas Schwab

configure.in: Only append to makefiles that are newly created to avoid multiple...

2003-03-14  Andreas Schwab  <schwab@suse.de>

	* configure.in: Only append to makefiles that are newly created to
	avoid multiple multi-do/multi-clean rules.
	* configure: Rebuilt.

From-SVN: r64363
parent f650843f
2003-03-14 Andreas Schwab <schwab@suse.de>
* configure.in: Only append to makefiles that are newly created to
avoid multiple multi-do/multi-clean rules.
* configure: Rebuilt.
2003-03-13 Jonathan Wakely <redi@gcc.gnu.org> 2003-03-13 Jonathan Wakely <redi@gcc.gnu.org>
* docs/html/configopts.html, docs/html/documentation.html, * docs/html/configopts.html, docs/html/documentation.html,
......
...@@ -24270,9 +24270,22 @@ test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h ...@@ -24270,9 +24270,22 @@ test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
if test -n "$CONFIG_FILES"; then if test -n "$CONFIG_FILES"; then
if test -n "${with_build_subdir}" || test -n "${with_target_subdir}"; then if test -n "${with_build_subdir}" || test -n "${with_target_subdir}"; then
LD="${ORIGINAL_LD_FOR_MULTILIBS}" LD="${ORIGINAL_LD_FOR_MULTILIBS}"
ac_file=Makefile . ${glibcpp_basedir}/../config-ml.in # Ony modify Makefiles that are just being created.
grep '^MULTISUBDIR =' Makefile >> src/Makefile case " $CONFIG_FILES" in
grep '^MULTISUBDIR =' Makefile >> libsupc++/Makefile *" Makefile"*)
ac_file=Makefile . ${glibcpp_basedir}/../config-ml.in
;;
esac
case $CONFIG_FILES in
*src/Makefile*)
grep '^MULTISUBDIR =' Makefile >> src/Makefile
;;
esac
case $CONFIG_FILES in
*libsupc++/Makefile*)
grep '^MULTISUBDIR =' Makefile >> libsupc++/Makefile
;;
esac
fi fi
fi fi
chmod +x mkcheck chmod +x mkcheck
......
...@@ -477,9 +477,22 @@ po/Makefile testsuite/Makefile mkcheck testsuite_flags, ...@@ -477,9 +477,22 @@ po/Makefile testsuite/Makefile mkcheck testsuite_flags,
if test -n "$CONFIG_FILES"; then if test -n "$CONFIG_FILES"; then
if test -n "${with_build_subdir}" || test -n "${with_target_subdir}"; then if test -n "${with_build_subdir}" || test -n "${with_target_subdir}"; then
LD="${ORIGINAL_LD_FOR_MULTILIBS}" LD="${ORIGINAL_LD_FOR_MULTILIBS}"
ac_file=Makefile . ${glibcpp_basedir}/../config-ml.in # Ony modify Makefiles that are just being created.
grep '^MULTISUBDIR =' Makefile >> src/Makefile case " $CONFIG_FILES" in
grep '^MULTISUBDIR =' Makefile >> libsupc++/Makefile *" Makefile"*)
ac_file=Makefile . ${glibcpp_basedir}/../config-ml.in
;;
esac
case $CONFIG_FILES in
*src/Makefile*)
grep '^MULTISUBDIR =' Makefile >> src/Makefile
;;
esac
case $CONFIG_FILES in
*libsupc++/Makefile*)
grep '^MULTISUBDIR =' Makefile >> libsupc++/Makefile
;;
esac
fi fi
fi fi
chmod +x mkcheck chmod +x mkcheck
...@@ -504,9 +517,22 @@ dnl libmath/Makefile libio/Makefile libsupc++/Makefile \ ...@@ -504,9 +517,22 @@ dnl libmath/Makefile libio/Makefile libsupc++/Makefile \
dnl po/Makefile testsuite/Makefile mkcheck testsuite_flags) dnl po/Makefile testsuite/Makefile mkcheck testsuite_flags)
dnl AC_CONFIG_COMMANDS([default], dnl AC_CONFIG_COMMANDS([default],
dnl [if test -n "$CONFIG_FILES"; then dnl [if test -n "$CONFIG_FILES"; then
dnl ac_file=Makefile . ${glibcpp_basedir}/../config-ml.in dnl # Ony modify Makefiles that are just being created.
dnl grep '^MULTISUBDIR =' Makefile >> src/Makefile dnl case " $CONFIG_FILES" in
dnl grep '^MULTISUBDIR =' Makefile >> libsupc++/Makefile dnl *" Makefile"*)
dnl ac_file=Makefile . ${glibcpp_basedir}/../config-ml.in
dnl ;;
dnl esac
dnl case $CONFIG_FILES in
dnl *src/Makefile*)
dnl grep '^MULTISUBDIR =' Makefile >> src/Makefile
dnl ;;
dnl esac
dnl case $CONFIG_FILES in
dnl *libsupc++/Makefile*)
dnl grep '^MULTISUBDIR =' Makefile >> libsupc++/Makefile
dnl ;;
dnl esac
dnl fi dnl fi
dnl chmod +x mkcheck dnl chmod +x mkcheck
dnl chmod +x testsuite_flags dnl chmod +x testsuite_flags
......
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