This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]