diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-02-17 10:05:27 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-02-17 10:05:27 +0000 |
commit | 90b41dadfe5ac3ad6a928fe7e8c0dd810ccb54d4 (patch) | |
tree | f01581d2b46954780b3a987d3a1441110917cde5 /configure.ac | |
parent | 484ae26c8257d83aecf8775d14fc9f98bee74d84 (diff) | |
download | gcc-90b41dadfe5ac3ad6a928fe7e8c0dd810ccb54d4.tar.gz |
PR 11238
* Makefile.tpl (local-distclean): Also remove config.cache files in
sub-directories as there may not be Makefiles present in the
sub-directories.
* Makefile.in: Regenerate.
* configure.ac: Revert previous delta.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@156826 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/configure.ac b/configure.ac index 371b6e2bc5b..34641667339 100644 --- a/configure.ac +++ b/configure.ac @@ -2710,12 +2710,6 @@ for module in ${build_configdirs} ; do echo 1>&2 "*** removing ${build_subdir}/${module}/Makefile to force reconfigure" rm -f ${build_subdir}/${module}/Makefile fi - # PR 11238: Also remove config.cache files. - if test -z "${no_recursion}" \ - && test -f ${build_subdir}/${module}/config.cache; then - echo 1>&2 "*** removing ${build_subdir}/${module}/config.cache to allow reconfigure" - rm -f ${build_subdir}/${module}/config.cache - fi extrasub_build="$extrasub_build /^@if build-$module\$/d /^@endif build-$module\$/d @@ -2731,11 +2725,6 @@ for module in ${configdirs} ; do rm -f ${file} fi done - # PR 11238: Also remove config.cache files. - if test -f ${module}/config.cache; then - echo 1>&2 "*** removing ${module}/config.cache to allow reconfigure" - rm -f ${module}/config.cache - fi fi extrasub_host="$extrasub_host /^@if $module\$/d @@ -2750,12 +2739,6 @@ for module in ${target_configdirs} ; do echo 1>&2 "*** removing ${target_subdir}/${module}/Makefile to force reconfigure" rm -f ${target_subdir}/${module}/Makefile fi - # PR 11238: Also remove config.cache files. - if test -z "${no_recursion}" \ - && test -f ${target_subdir}/${module}/config.cache; then - echo 1>&2 "*** removing ${target_subdir}/${module}/config.cache to allow reconfigure" - rm -f ${target_subdir}/${module}/config.cache - fi # We only bootstrap target libraries listed in bootstrap_target_libs. case $bootstrap_target_libs in |