summaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2017-06-23 18:27:00 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2017-06-23 18:27:00 +0000
commit275219cfe74f5ab6d8b2d589d41f57e734fc4237 (patch)
tree239bcb562bc031725a27498b62a129c9dfc4d942 /Makefile.inc1
parent10c935294b965f7762c76c5549bf9ac76d8a2733 (diff)
downloadsrc-test2-275219cfe74f5ab6d8b2d589d41f57e734fc4237.tar.gz
src-test2-275219cfe74f5ab6d8b2d589d41f57e734fc4237.zip
Expose only the create-packages-* targets since they set needed DEST/DIRDIR.
The other targets just fail confusingly otherwise. MFC after: 2 weeks Sponsored by: Dell EMC Isilon
Notes
Notes: svn path=/head/; revision=320285
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc16
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 2332675148d9..d39570f1abc8 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -1553,12 +1553,14 @@ _repodir: .PHONY
create-packages-world: _pkgbootstrap _repodir .PHONY
${_+_}@cd ${.CURDIR}; \
- ${MAKE} DESTDIR=${WSTAGEDIR} \
+ ${MAKE} -f Makefile.inc1 \
+ DESTDIR=${WSTAGEDIR} \
PKG_VERSION=${PKG_VERSION} create-world-packages
create-packages-kernel: _pkgbootstrap _repodir .PHONY
${_+_}@cd ${.CURDIR}; \
- ${MAKE} DESTDIR=${KSTAGEDIR} \
+ ${MAKE} -f Makefile.inc1 \
+ DESTDIR=${KSTAGEDIR} \
PKG_VERSION=${PKG_VERSION} DISTDIR=kernel \
create-kernel-packages