PERFORCE change 131189 for review

John Birrell jb at FreeBSD.org
Tue Dec 18 17:07:38 PST 2007


http://perforce.freebsd.org/chv.cgi?CH=131189

Change 131189 by jb at jb_freebsd1 on 2007/12/19 01:07:35

	Add a knob to allow just the kernels to be (re)built during
	a "make universe". This is intended for use with NOCLEAN when
	trying to find a fix for the "chase the variable type tango".
	Having to trudge through a buildworld that you know has already
	succeeded is a pain in the bottom.

Affected files ...

.. //depot/projects/dtrace/src/Makefile#17 edit

Differences ...

==== //depot/projects/dtrace/src/Makefile#17 (text+ko) ====

@@ -284,12 +284,14 @@
 universe: universe_${target}
 .ORDER: universe_prologue universe_${target} universe_epilogue
 universe_${target}:
+.if !defined(MAKE_JUST_KERNELS)
 	@echo ">> ${target} started on `LC_ALL=C date`"
 	-cd ${.CURDIR} && ${MAKE} ${JFLAG} buildworld \
 	    TARGET=${target} \
 	    __MAKE_CONF=/dev/null \
 	    > _.${target}.buildworld 2>&1
 	@echo ">> ${target} buildworld completed on `LC_ALL=C date`"
+.endif
 .if exists(${.CURDIR}/sys/${target}/conf/NOTES)
 	-cd ${.CURDIR}/sys/${target}/conf && ${MAKE} LINT \
 	    > ${.CURDIR}/_.${target}.makeLINT 2>&1


More information about the p4-projects mailing list