svn commit: r251352 - head

Simon J. Gerraty sjg at FreeBSD.org
Mon Jun 3 23:51:47 UTC 2013


Author: sjg
Date: Mon Jun  3 23:51:46 2013
New Revision: 251352
URL: http://svnweb.freebsd.org/changeset/base/251352

Log:
  bmake does not like universe_${target}_prologue in the .ORDER
  when there is an explicit dependency for it anyway.
  Remove it so both bmake and fmake do the same thing.
  
  Reviewed by:	OBrien

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- head/Makefile	Mon Jun  3 22:22:53 2013	(r251351)
+++ head/Makefile	Mon Jun  3 23:51:46 2013	(r251352)
@@ -375,7 +375,7 @@ universe_prologue:
 .endif
 .for target in ${TARGETS}
 universe: universe_${target}
-.ORDER: universe_prologue upgrade_checks universe_${target}_prologue universe_${target} universe_epilogue
+.ORDER: universe_prologue upgrade_checks universe_${target} universe_epilogue
 universe_${target}: universe_${target}_prologue
 universe_${target}_prologue:
 	@echo ">> ${target} started on `LC_ALL=C date`"


More information about the svn-src-head mailing list