diff options
author | agc <agc@pkgsrc.org> | 1998-10-26 18:29:10 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1998-10-26 18:29:10 +0000 |
commit | a1b5626a3b5ef79d8e558b7219b80189a3c14879 (patch) | |
tree | a5143065d7b1c32d6545c2da15f7defca4a9a6a8 /mk | |
parent | 22a3783121de620bc0eef0a563c8f851d5e38248 (diff) | |
download | pkgsrc-a1b5626a3b5ef79d8e558b7219b80189a3c14879.tar.gz |
Update the (package) version of pkg_install tools to 19981026, to use
the new -b and -B flags to pkg_create, so that any binary packages
that are created automatically get their build information and
versioning data attached.
Update bsd.pkg.mk to have PKGTOOLS_REQD= 19981026.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 97f26830635..06f5ba259bb 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.186 1998/10/26 17:40:57 agc Exp $ +# $NetBSD: bsd.pkg.mk,v 1.187 1998/10/26 18:29:10 agc Exp $ # # This file is in the public domain. # @@ -528,10 +528,7 @@ DISTFILES?= ${DISTNAME}${EXTRACT_SUFX} PKGNAME?= ${DISTNAME} # Latest version of pkgtools required for this file. -.ifdef PKG_RELATIVE_SYMLINKS -PKGTOOLS_REQD= 19981019 -.endif -PKGTOOLS_REQD?= 19980908 +PKGTOOLS_REQD= 19981026 # Check that we're using up-to-date pkg_* tools with this file. .ifndef _PKGTOOLS_VER @@ -1931,7 +1928,7 @@ fake-pkg: ${PLIST} ${DESCR} .if defined(FORCE_PKG_REGISTER) @${RM} -rf ${PKG_DBDIR}/${PKGNAME} .endif - @${RM} ${BUILD_VERSION_FILE} ${BUILD_INFO_FILE} + @${RM} -f ${BUILD_VERSION_FILE} ${BUILD_INFO_FILE} @files=""; \ for f in ${.CURDIR}/Makefile ${FILESDIR}/* ${PKGDIR}/*; do \ if [ -f $$f ]; then \ |