diff options
author | agc <agc@pkgsrc.org> | 2000-01-11 09:18:03 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2000-01-11 09:18:03 +0000 |
commit | 07b897362b61ff74e8a46eb27e75360dd4a08b3b (patch) | |
tree | ee686c712b2a2d7432f3db1a9bbdf0333473ddbe | |
parent | ca40abfb5a42b7773d5fff4cc65265e7a0d98f42 (diff) | |
download | pkgsrc-07b897362b61ff74e8a46eb27e75360dd4a08b3b.tar.gz |
The size options have only available in pkg_create since 23rd November
1999, so make that the date for the test, not 9th September 1999.
-rw-r--r-- | mk/bsd.pkg.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 130f85bb51d..dfa57c2b17f 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.387 2000/01/10 19:43:37 hubertf Exp $ +# $NetBSD: bsd.pkg.mk,v 1.388 2000/01/11 09:18:03 agc Exp $ # # This file is in the public domain. # @@ -567,12 +567,12 @@ SIZE_ALL_FILE= ${WRKDIR}/SizeAll .ifndef PKG_ARGS PKG_ARGS= -v -c ${COMMENT} -d ${DESCR} -f ${PLIST} -l PKG_ARGS+= -b ${BUILD_VERSION_FILE} -B ${BUILD_INFO_FILE} -.if ${PKGTOOLS_VERSION} > 19990909 +.if ${PKGTOOLS_VERSION} > 19991123 # Size storing options, only available since 19991123 or so # I don't want to force people using this. # This .if block should be removed next time PKGTOOLS_REQD is bumped. PKG_ARGS+= -s ${SIZE_PKG_FILE} -S ${SIZE_ALL_FILE} -.endif # ${PKGTOOLS_VERSION) > 19990909 +.endif # ${PKGTOOLS_VERSION) > 19991123 PKG_ARGS+= -p ${PREFIX} -P "`${MAKE} package-depends PACKAGE_DEPENDS_WITH_PATTERNS=false|sort -u`" .ifdef CONFLICTS PKG_ARGS+= -C "${CONFLICTS}" |