summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authordsainty <dsainty>2006-10-12 08:56:56 +0000
committerdsainty <dsainty>2006-10-12 08:56:56 +0000
commit96e834eeb9392b5af5691c1d1ce6fb6a2adf4a89 (patch)
tree0284fd6543e2343e585809e5a220f0550af1adda /textproc
parent420dfbda5a04c892c61afafad3ba077fa25926f7 (diff)
downloadpkgsrc-96e834eeb9392b5af5691c1d1ce6fb6a2adf4a89.tar.gz
Hmmm, revert previous for the moment. 'make show-var VARNAME=XML_ENTRIES'
with this change in-place suggests that sometimes the prefix IS added in catalogs.mk (and presumably not in the client package, for some reason).
Diffstat (limited to 'textproc')
-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 9cbbabf6b5f..985a54ca3e7 100644
--- a/textproc/xmlcatmgr/catalogs.mk
+++ b/textproc/xmlcatmgr/catalogs.mk
@@ -1,4 +1,4 @@
-# $NetBSD: catalogs.mk,v 1.17 2006/10/12 08:34:56 dsainty Exp $
+# $NetBSD: catalogs.mk,v 1.18 2006/10/12 08:56:56 dsainty 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 ${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 ${c} --
+XML_ENTRIES+= nextCatalog ${PREFIX:=${c}} --
. endfor
.endif