svn commit: r326648 - head

Bryan Drewery bdrewery at FreeBSD.org
Thu Dec 7 00:31:29 UTC 2017


Author: bdrewery
Date: Thu Dec  7 00:31:28 2017
New Revision: 326648
URL: https://svnweb.freebsd.org/changeset/base/326648

Log:
  tinderbox/universe: Don't execute KERNCONFS lookup if not needed.
  
  Sponsored by:	Dell EMC

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- head/Makefile	Thu Dec  7 00:31:10 2017	(r326647)
+++ head/Makefile	Thu Dec  7 00:31:28 2017	(r326648)
@@ -585,6 +585,7 @@ universe_${target}: universe_${target}_done
 universe_${target}_done:
 	@echo ">> ${target} completed on `LC_ALL=C date`"
 .endfor
+.if make(universe_kernconfs) || make(universe_kernels)
 universe_kernels: universe_kernconfs .PHONY
 .if !defined(TARGET)
 TARGET!=	uname -m
@@ -621,6 +622,7 @@ universe_kernconf_${TARGET}_${kernel}: .MAKE
 	    (echo "${TARGET} ${kernel} kernel failed," \
 	    "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))
 .endfor
+.endif	# make(universe_kernels)
 universe: universe_epilogue
 universe_epilogue: .PHONY
 	@echo "--------------------------------------------------------------"


More information about the svn-src-head mailing list