diff options
author | uebayasi <uebayasi> | 2007-02-20 09:22:14 +0000 |
---|---|---|
committer | uebayasi <uebayasi> | 2007-02-20 09:22:14 +0000 |
commit | 73abe47eea08f36cf83d61a0e25eff8a752d74b0 (patch) | |
tree | d06937a2cf1a72d3b1d9c90f96a201daad9a942d /mk/plist | |
parent | 0cf908c6bbe00b4c89e868a1d0d7451449fa3ef4 (diff) | |
download | pkgsrc-73abe47eea08f36cf83d61a0e25eff8a752d74b0.tar.gz |
A missing quote.
Diffstat (limited to 'mk/plist')
-rw-r--r-- | mk/plist/plist.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/plist/plist.mk b/mk/plist/plist.mk index c5d1c445d6d..d1c3b060070 100644 --- a/mk/plist/plist.mk +++ b/mk/plist/plist.mk @@ -1,4 +1,4 @@ -# $NetBSD: plist.mk,v 1.18 2006/11/05 15:10:08 joerg Exp $ +# $NetBSD: plist.mk,v 1.19 2007/02/20 09:22:14 uebayasi Exp $ # # This Makefile fragment handles the creation of PLISTs for use by # pkg_create(8). @@ -120,7 +120,7 @@ PLIST_SUBST+= OPSYS=${OPSYS:Q} \ PKGBASE=${PKGBASE:Q} \ PKGNAME=${PKGNAME_NOREV:Q} \ PKGLOCALEDIR=${PKGLOCALEDIR:Q} \ - PKGVERSION=${PKGVERSION:C/nb[0-9]*$//} \ + PKGVERSION=${PKGVERSION:C/nb[0-9]*$//:Q} \ LOCALBASE=${LOCALBASE:Q} \ VIEWBASE=${VIEWBASE:Q} \ X11BASE=${X11BASE:Q} \ |