svn commit: r278454 - projects/release-pkg/etc

Baptiste Daroussin bapt at FreeBSD.org
Mon Feb 9 13:39:39 UTC 2015


Author: bapt
Date: Mon Feb  9 13:39:38 2015
New Revision: 278454
URL: https://svnweb.freebsd.org/changeset/base/278454

Log:
  Ensure make distributeworld respects DESTDIR

Modified:
  projects/release-pkg/etc/Makefile

Modified: projects/release-pkg/etc/Makefile
==============================================================================
--- projects/release-pkg/etc/Makefile	Mon Feb  9 11:42:43 2015	(r278453)
+++ projects/release-pkg/etc/Makefile	Mon Feb  9 13:39:38 2015	(r278454)
@@ -193,8 +193,8 @@ distribute:
 	# Avoid installing tests here; "make distribution" will do this and
 	# correctly place them in the right location.
 	${_+_}cd ${.CURDIR} ; ${MAKE} MK_TESTS=no install \
-	    DESTDIR=${DISTDIR}/${DISTRIBUTION}
-	${_+_}cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION}
+	    DESTDIR=${DESTDIR}/${DISTDIR}/${DISTRIBUTION}
+	${_+_}cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DESTDIR}/${DISTDIR}/${DISTRIBUTION}
 
 .include <bsd.endian.mk>
 .if ${TARGET_ENDIANNESS} == "1234"


More information about the svn-src-projects mailing list