diff options
author | Richard Henderson <rth@redhat.com> | 2001-10-26 00:24:34 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-10-26 00:24:34 -0700 |
commit | 4992fc7ff58e9c9938717fa503b9c2ec5de097a6 (patch) | |
tree | 63339afd98235e775cb3dfac6d31cb0393436b08 | |
parent | 1a808622b6f1e5a0a3fc871d030e98b2bbfc2928 (diff) | |
download | gcc-4992fc7ff58e9c9938717fa503b9c2ec5de097a6.zip gcc-4992fc7ff58e9c9938717fa503b9c2ec5de097a6.tar.gz gcc-4992fc7ff58e9c9938717fa503b9c2ec5de097a6.tar.bz2 |
Makefile.in (unstage*): Remove as, ld, collect-ld before moving everything back to the main build directory.
* Makefile.in (unstage*): Remove as, ld, collect-ld before
moving everything back to the main build directory.
From-SVN: r46533
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 640b612..bbff29b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-10-26 Richard Henderson <rth@redhat.com> + + * Makefile.in (unstage*): Remove as, ld, collect-ld before + moving everything back to the main build directory. + 2001-10-26 Christopher Faylor <cgf@redhat.com> * config/i386/cygwin.h: Search target specfic include directory, if diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 85c7d7a..a365017 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3048,6 +3048,9 @@ bootstrap4 bootstrap4-lean: stage4_build unstage1 unstage2 unstage3 unstage4: -set -vx; stage=`echo $@ | sed -e 's/un//'`; \ + rm -f $$stage/as$(exeext); \ + rm -f $$stage/ld$(exeext); \ + rm -f $$stage/collect-ld$(exeext); \ if test -d $$stage; then \ mv $$stage/* . 2>/dev/null; \ for i in `cd $$stage; echo *` ; do \ |