summaryrefslogtreecommitdiff
path: root/textproc/xmlcatmgr
diff options
context:
space:
mode:
authorrillig <rillig>2005-05-22 21:54:59 +0000
committerrillig <rillig>2005-05-22 21:54:59 +0000
commita0820ac2fee5b93ee18591200cb3ae40f517197e (patch)
tree39799ff2c78d39c2067ef5e03e680d6b85838ec1 /textproc/xmlcatmgr
parent2743beaf3f4078a773675c465f16b8212ac58209 (diff)
downloadpkgsrc-a0820ac2fee5b93ee18591200cb3ae40f517197e.tar.gz
Replaced $c with ${c} to make pkglint happy.
Diffstat (limited to 'textproc/xmlcatmgr')
-rw-r--r--textproc/xmlcatmgr/catalogs.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/textproc/xmlcatmgr/catalogs.mk b/textproc/xmlcatmgr/catalogs.mk
index 148bc65197a..58f64883d99 100644
--- a/textproc/xmlcatmgr/catalogs.mk
+++ b/textproc/xmlcatmgr/catalogs.mk
@@ -1,4 +1,4 @@
-# $NetBSD: catalogs.mk,v 1.11 2005/05/11 02:07:37 jlam Exp $
+# $NetBSD: catalogs.mk,v 1.12 2005/05/22 21:54:59 rillig Exp $
#
# This Makefile fragment is intended to be included by packages that install
# catalog files or DTDs. It takes care of registering them into the right
@@ -32,14 +32,14 @@ XML_ENTRIES?=
# Convert SGML_CATALOGS files into arguments for SGML_ENTRIES.
.if !empty(SGML_CATALOGS)
. for c in ${SGML_CATALOGS}
-SGML_ENTRIES+= CATALOG ${PREFIX:=$c} --
+SGML_ENTRIES+= CATALOG ${PREFIX:=${c}} --
. endfor
.endif
# Convert XML_CATALOGS files into arguments for XML_ENTRIES.
.if !empty(XML_CATALOGS)
. for c in ${XML_CATALOGS}
-XML_ENTRIES+= nextCatalog ${PREFIX:=$c} --
+XML_ENTRIES+= nextCatalog ${PREFIX:=${c}} --
. endfor
.endif