svn commit: r264090 - head

Baptiste Daroussin bapt at FreeBSD.org
Thu Apr 3 22:22:11 UTC 2014


Author: bapt
Date: Thu Apr  3 22:22:10 2014
New Revision: 264090
URL: http://svnweb.freebsd.org/changeset/base/264090

Log:
  XDDESTDIR should not be set by the user, instead the user might want to tweak
  XDTP and let the standard DESTDIR decide where to install.
  
  Discussed with:	imp

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Thu Apr  3 22:14:18 2014	(r264089)
+++ head/Makefile.inc1	Thu Apr  3 22:22:10 2014	(r264090)
@@ -1891,7 +1891,7 @@ CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" 
 CDTMP=	${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp
 CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
 CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN}
-XDDESTDIR?=${DESTDIR}/${XDTP}
+XDDESTDIR=${DESTDIR}/${XDTP}
 .if !defined(OSREL)
 OSREL!= uname -r | sed -e 's/[-(].*//'
 .endif


More information about the svn-src-all mailing list