diff options
author | tron <tron> | 2002-12-21 15:06:04 +0000 |
---|---|---|
committer | tron <tron> | 2002-12-21 15:06:04 +0000 |
commit | 0dda4dd52a9a5abd054d76f86e722a44edbd4fd7 (patch) | |
tree | 7181710e6611b2413ad7f32c70a0fae3bab701f4 /mk | |
parent | 43e0df4042e55877d1fc55be2e7e725230c3e1a9 (diff) | |
download | pkgsrc-0dda4dd52a9a5abd054d76f86e722a44edbd4fd7.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 \ |