svn commit: r254437 - head

Simon J. Gerraty sjg at FreeBSD.org
Sat Aug 17 04:41:35 UTC 2013


Author: sjg
Date: Sat Aug 17 04:41:35 2013
New Revision: 254437
URL: http://svnweb.freebsd.org/changeset/base/254437

Log:
  Don't let user specified DESTDIR, break building our chosen make.

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- head/Makefile	Sat Aug 17 01:17:51 2013	(r254436)
+++ head/Makefile	Sat Aug 17 04:41:35 2013	(r254437)
@@ -349,9 +349,9 @@ make bmake: .PHONY
 	@echo ">>> Building an up-to-date make(1)"
 	@echo "--------------------------------------------------------------"
 	${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \
-		${MMAKE} obj && \
-		${MMAKE} depend && \
-		${MMAKE} all && \
+		${MMAKE} obj DESTDIR= && \
+		${MMAKE} depend DESTDIR= && \
+		${MMAKE} all DESTDIR= && \
 		${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= PROGNAME=${MYMAKE:T}
 
 tinderbox toolchains kernel-toolchains: upgrade_checks


More information about the svn-src-head mailing list