This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
PATCH to Makefile.in:unstrap
- From: Jason Merrill <jason at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Thu, 29 May 2003 19:03:41 -0400
- Subject: PATCH to Makefile.in:unstrap
'make unstage1' creates stage_last. Oops.
Applied to trunk.
2003-05-29 Jason Merrill <jason@redhat.com>
* Makefile.in (unstrap): Remove stage_last after make unstage1.
*** Makefile.in.~1~ 2003-05-24 14:54:47.000000000 -0400
--- Makefile.in 2003-05-21 13:41:30.000000000 -0400
*************** cleanstrap:
*** 3613,3620 ****
$(MAKE) LANGUAGES="$(LANGUAGES)" bootstrap
unstrap:
! -rm -rf stage[234]* stage_last
$(MAKE) unstage1
# Differs from cleanstrap in that it starts from the earlier stage1 build,
# not from scratch.
--- 3613,3621 ----
$(MAKE) LANGUAGES="$(LANGUAGES)" bootstrap
unstrap:
! -rm -rf stage[234]*
$(MAKE) unstage1
+ -rm -f stage_last
# Differs from cleanstrap in that it starts from the earlier stage1 build,
# not from scratch.