diff options
author | asami <asami@FreeBSD.org> | 1998-11-14 17:45:09 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-11-14 17:45:09 +0800 |
commit | 251569cbba8104d89a4cb81b959e50fd00d5373a (patch) | |
tree | b2b2623034386427e6ec41bc8c8b041f2be27a7e /Mk/bsd.port.mk | |
parent | 521807d38becba50804a00710cfa1b51c759a4f4 (diff) | |
download | freebsd-ports-gnome-251569cbba8104d89a4cb81b959e50fd00d5373a.tar.gz freebsd-ports-gnome-251569cbba8104d89a4cb81b959e50fd00d5373a.tar.zst freebsd-ports-gnome-251569cbba8104d89a4cb81b959e50fd00d5373a.zip |
Add EXTRA_PKG_FLAGS to PKG_FLAGS. You can now add arguments to pkg_create
without redefining PKG_FLAGS after bsd.port.mk.
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index eff539b41ed7..f214f445776e 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -1,7 +1,7 @@ #-*- mode: Fundamental; tab-width: 4; -*- # ex:ts=4 # -# $Id: bsd.port.mk,v 1.295 1998/11/08 10:29:52 asami Exp $ +# $Id: bsd.port.mk,v 1.296 1998/11/11 05:21:27 asami Exp $ # $NetBSD: $ # # bsd.port.mk - 940820 Jordan K. Hubbard. @@ -698,7 +698,7 @@ TMPPLIST?= ${WRKDIR}/.PLIST.mktmp PKG_CMD?= /usr/sbin/pkg_create PKG_DELETE?= /usr/sbin/pkg_delete .if !defined(PKG_ARGS) -PKG_ARGS= -v -c ${COMMENT} -d ${DESCR} -f ${TMPPLIST} -p ${PREFIX} -P "`${MAKE} package-depends|sort -u`" +PKG_ARGS= -v -c ${COMMENT} -d ${DESCR} -f ${TMPPLIST} -p ${PREFIX} -P "`${MAKE} package-depends|sort -u`" ${EXTRA_PKG_ARGS} .if exists(${PKGDIR}/INSTALL) PKG_ARGS+= -i ${PKGDIR}/INSTALL .endif |