summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruebayasi <uebayasi@pkgsrc.org>2007-02-20 09:22:14 +0000
committeruebayasi <uebayasi@pkgsrc.org>2007-02-20 09:22:14 +0000
commitd24c94781bf366dcc120bdd7736e073ad5536a73 (patch)
treed06937a2cf1a72d3b1d9c90f96a201daad9a942d
parent6c6f8db0a1ff3640a9dac30788499f27ea051d8a (diff)
downloadpkgsrc-d24c94781bf366dcc120bdd7736e073ad5536a73.tar.gz
A missing quote.
-rw-r--r--mk/plist/plist.mk4
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} \