svn commit: r264742 - head

Julio Merino jmmv at FreeBSD.org
Mon Apr 21 22:36:32 UTC 2014


Author: jmmv
Date: Mon Apr 21 22:36:31 2014
New Revision: 264742
URL: http://svnweb.freebsd.org/changeset/base/264742

Log:
  Prevent building tests when bootstrapping make.
  
  Should fix the breakage reported by tinderbox when WITHOUT_BMAKE is set,
  which was probably introduced in r263346..

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- head/Makefile	Mon Apr 21 21:39:25 2014	(r264741)
+++ head/Makefile	Mon Apr 21 22:36:31 2014	(r264742)
@@ -330,7 +330,8 @@ MMAKEENV=	MAKEOBJDIRPREFIX=${MYMAKE:H} \
 		INSTALL="sh ${.CURDIR}/tools/install.sh"
 MMAKE=		${MMAKEENV} ${MAKE} \
 		-D_UPGRADING -DNO_MAN -DNO_SHARED \
-		-DNO_CPU_CFLAGS -DNO_WERROR DESTDIR= PROGNAME=${MYMAKE:T}
+		-DNO_CPU_CFLAGS -DNO_WERROR \
+		DESTDIR= MK_TESTS=no PROGNAME=${MYMAKE:T}
 
 make bmake: .PHONY
 	@echo


More information about the svn-src-all mailing list