Date: Wed, 19 Dec 2007 01:07:37 GMT From: John Birrell <jb@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 131189 for review Message-ID: <200712190107.lBJ17btC002090@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=131189 Change 131189 by jb@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200712190107.lBJ17btC002090>