diff options
author | jmmv <jmmv@pkgsrc.org> | 2003-09-10 22:29:10 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2003-09-10 22:29:10 +0000 |
commit | 00556183eaf53579f98f7f582beb0dc1daf2e8ae (patch) | |
tree | a1729ad9f9ea2caa4bf59293675dc47d3206caab /mk/bsd.pkg.mk | |
parent | 7b011b289a5025139442b48bad405c8f19f492a6 (diff) | |
download | pkgsrc-00556183eaf53579f98f7f582beb0dc1daf2e8ae.tar.gz |
During print-PLIST, use PKGNAME_NOREV to search for matches, not PKGNAME
(though, keep the ${PKGNAME} replacement, as it contains the right value
in the PLIST).
Diffstat (limited to 'mk/bsd.pkg.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 8e4b3f4eba7..e99ddfa4af2 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1268 2003/09/10 02:20:50 jlam Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1269 2003/09/10 22:29:10 jmmv Exp $ # # This file is in the public domain. # @@ -4351,7 +4351,7 @@ SUBST_PLIST_REPLACEMENT1= \ -e 's@${LOWER_OS_VERSION:S/./\./g}@\$${LOWER_OS_VERSION}@' \ -e 's@${LOWER_OPSYS}@\$${LOWER_OPSYS}@' SUBST_PLIST_REPLACEMENT2= \ - -e 's@${PKGNAME:S/./\./g}@\$${PKGNAME}@' \ + -e 's@${PKGNAME_NOREV:S/./\./g}@\$${PKGNAME}@' \ -e 's@${PKGVERSION:S/./\./g}@\$${PKGVERSION}@' \ -e 's@${PKGLOCALEDIR}/locale@\$${PKGLOCALEDIR}/locale@' |