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

Baptiste Daroussin bapt at FreeBSD.org
Mon Feb 9 11:11:18 UTC 2015


Author: bapt
Date: Mon Feb  9 11:11:17 2015
New Revision: 278451
URL: https://svnweb.freebsd.org/changeset/base/278451

Log:
  Respect DESTDIR when running make distrib-dirs with -DNO_ROOT

Modified:
  projects/release-pkg/etc/Makefile

Modified: projects/release-pkg/etc/Makefile
==============================================================================
--- projects/release-pkg/etc/Makefile	Mon Feb  9 10:46:39 2015	(r278450)
+++ projects/release-pkg/etc/Makefile	Mon Feb  9 11:11:17 2015	(r278451)
@@ -382,7 +382,7 @@ distrib-dirs: ${MTREES:N/*}
 		shift; \
 		d=$$1; \
 		test "$$d" == "/" && d=""; \
-		d=${DISTBASE}$$d; \
+		d=${DESTDIR}/${DISTBASE}$$d; \
 		shift; \
 		test -d $$d || mkdir -p $$d; \
 		${ECHO} "${MTREE_CMD:N-W} -C -f $$m -K uname,gname | " \


More information about the svn-src-projects mailing list