diff options
author | tron <tron@pkgsrc.org> | 2002-12-21 15:06:04 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2002-12-21 15:06:04 +0000 |
commit | 35aeb202cde6dbbe99c8f3c01094fca63cbe1e8a (patch) | |
tree | 7181710e6611b2413ad7f32c70a0fae3bab701f4 /mk | |
parent | 1f51cc1a488f90278587e62d25eb1e72e6f105d4 (diff) | |
download | pkgsrc-35aeb202cde6dbbe99c8f3c01094fca63cbe1e8a.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 \ |