diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-11-07 17:55:41 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-11-07 17:55:41 +0000 |
commit | e01b8f26ce9b159f2dd3d0e6c21b8ac13582dcdd (patch) | |
tree | 288cb96b11f5fcece0d73527cdfb302a4b9fadc5 | |
parent | remove USE_XLIB (diff) |
Really add the fix for 56096. This was tested on bento, but somehow removed
at the last minute. This fixes PKG_ARGS when WRKDIRPREFIX is specified.
Reminded by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
-rw-r--r-- | Mk/bsd.port.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 488e765956b6..e4b374f1ef48 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -1910,7 +1910,7 @@ PKGINSTALLVER!= ${PKG_INFO} -P 2>/dev/null | ${SED} -e 's/.*: //' DISABLE_CONFLICTS= YES .endif .if !defined(PKG_ARGS) -PKG_ARGS= -v -c -${COMMENT:Q} -d ${DESCR} -f ${TMPPLIST} -p ${PREFIX} -P "`${MAKE} package-depends | ${GREP} -v -E ${PKG_IGNORE_DEPENDS} | sort -u`" ${EXTRA_PKG_ARGS} $${_LATE_PKG_ARGS} +PKG_ARGS= -v -c -${COMMENT:Q} -d ${DESCR} -f ${TMPPLIST} -p ${PREFIX} -P "`cd ${.CURDIR} && ${MAKE} package-depends | ${GREP} -v -E ${PKG_IGNORE_DEPENDS} | sort -u`" ${EXTRA_PKG_ARGS} $${_LATE_PKG_ARGS} .if !defined(NO_MTREE) PKG_ARGS+= -m ${MTREE_FILE} .endif |