diff options
author | tron <tron> | 2002-12-21 15:06:04 +0000 |
---|---|---|
committer | tron <tron> | 2002-12-21 15:06:04 +0000 |
commit | bcc6616ef799b0ddf93b1a9c7d13eb06ce8c15fb (patch) | |
tree | 7181710e6611b2413ad7f32c70a0fae3bab701f4 /mk | |
parent | 46e5992d3d0c3f0bee79af2eba918b167f9d7487 (diff) | |
download | pkgsrc-bcc6616ef799b0ddf93b1a9c7d13eb06ce8c15fb.tar.gz |
Fix broken environment passed to "pkg_tarup" command to make "tarup"
target work again.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 9a84992aa18..0c2507dbe6c 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1108 2002/12/18 14:19:13 wiz Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1109 2002/12/21 15:06:04 tron Exp $ # # This file is in the public domain. # @@ -2928,7 +2928,7 @@ lint: tarup: ${_PKG_SILENT}${_PKG_DEBUG} \ ${RM} -f ${PACKAGES}/All/${PKGNAME}${PKG_SUFX}; \ - ${SETENV} PKG_DBDIR=${PKG_DBDIR} PKG_SUFX=${PKG_SUFX:S/.//} \ + ${SETENV} PKG_DBDIR=${PKG_DBDIR} PKG_SUFX=${PKG_SUFX} \ PKGREPOSITORY=${PACKAGES}/All \ ${LOCALBASE}/bin/pkg_tarup ${PKGNAME}; \ for CATEGORY in ${CATEGORIES}; do \ |