diff options
author | Andreas Schwab <schwab@suse.de> | 2006-01-02 18:34:24 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 2006-01-02 18:34:24 +0000 |
commit | a6fbc1e26b60d2d7b3ce0b820d4a9e12e426fd75 (patch) | |
tree | c8ac67acca9e88b1a6a620a71db014d69adbedf1 | |
parent | 520c3081284ab9b4dede6feacdd4c9a7babe3806 (diff) | |
download | gcc-a6fbc1e26b60d2d7b3ce0b820d4a9e12e426fd75.zip gcc-a6fbc1e26b60d2d7b3ce0b820d4a9e12e426fd75.tar.gz gcc-a6fbc1e26b60d2d7b3ce0b820d4a9e12e426fd75.tar.bz2 |
configure.in: When reconfiguring remove Makefile in all stage directories.
* configure.in: When reconfiguring remove Makefile in
all stage directories.
* configure: Regenerate.
From-SVN: r109240
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 11 | ||||
-rw-r--r-- | configure.in | 13 |
3 files changed, 21 insertions, 9 deletions
@@ -1,3 +1,9 @@ +2006-01-02 Andreas Schwab <schwab@suse.de> + + * configure.in: When reconfiguring remove Makefile in + all stage directories. + * configure: Regenerate. + 2005-12-27 Steven Bosscher <stevenb.gcc@gmail.com> * MAINTAINERS: Update my email address. @@ -3012,10 +3012,13 @@ for module in ${build_configdirs} ; do /^@endif build-$module-$bootstrap_suffix\$/d" done for module in ${configdirs} ; do - if test -z "${no_recursion}" \ - && test -f ${module}/Makefile; then - echo 1>&2 "*** removing ${module}/Makefile to force reconfigure" - rm -f ${module}/Makefile + if test -z "${no_recursion}"; then + for file in stage*-${module}/Makefile ${module}/Makefile; do + if test -f ${file}; then + echo 1>&2 "*** removing ${file} to force reconfigure" + rm -f ${file} + fi + done fi extrasub="$extrasub /^@if $module\$/d diff --git a/configure.in b/configure.in index ad7ec4d..c3ef95b 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, -# 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +# 1999, 2000, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc. # # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -1802,10 +1802,13 @@ for module in ${build_configdirs} ; do /^@endif build-$module-$bootstrap_suffix\$/d" done for module in ${configdirs} ; do - if test -z "${no_recursion}" \ - && test -f ${module}/Makefile; then - echo 1>&2 "*** removing ${module}/Makefile to force reconfigure" - rm -f ${module}/Makefile + if test -z "${no_recursion}"; then + for file in stage*-${module}/Makefile ${module}/Makefile; do + if test -f ${file}; then + echo 1>&2 "*** removing ${file} to force reconfigure" + rm -f ${file} + fi + done fi extrasub="$extrasub /^@if $module\$/d |