svn commit: r258770 - head/release
Hiroki Sato
hrs at FreeBSD.org
Sat Nov 30 17:07:53 UTC 2013
Author: hrs
Date: Sat Nov 30 17:07:53 2013
New Revision: 258770
URL: http://svnweb.freebsd.org/changeset/base/258770
Log:
Add NOPKG to disable pkg-stage.
Modified:
head/release/Makefile
Modified: head/release/Makefile
==============================================================================
--- head/release/Makefile Sat Nov 30 16:26:04 2013 (r258769)
+++ head/release/Makefile Sat Nov 30 17:07:53 2013 (r258770)
@@ -16,6 +16,7 @@
# (by default, the directory above this one)
# PORTSDIR: location of ports tree to distribute (default: /usr/ports)
# DOCDIR: location of doc tree (default: /usr/doc)
+# NOPKG: if set, do not distribute third-party packages
# NOPORTS: if set, do not distribute ports tree
# NOSRC: if set, do not distribute source tree
# NODOC: if set, do not generate release documentation
@@ -212,7 +213,7 @@ packagesystem: base.txz kernel.txz ${EXT
touch ${.TARGET}
pkg-stage:
-.if(exists(${.CURDIR}/${TARGET}/pkg-stage.conf))
+.if !defined(NOPKG) && exists(${.CURDIR}/${TARGET}/pkg-stage.conf)
sh ${.CURDIR}/scripts/pkg-stage.sh ${.CURDIR}/${TARGET}/pkg-stage.conf \
${REVISION}
.endif
More information about the svn-src-head
mailing list