summaryrefslogtreecommitdiff
path: root/textproc/xmlcatmgr
diff options
context:
space:
mode:
authordsainty <dsainty@pkgsrc.org>2006-10-12 08:56:56 +0000
committerdsainty <dsainty@pkgsrc.org>2006-10-12 08:56:56 +0000
commitb75990990f55b1a5d9aff1f16d77341c0e628a77 (patch)
tree0284fd6543e2343e585809e5a220f0550af1adda /textproc/xmlcatmgr
parentf18ca60942de620f1e3cc57064d5c6794d4542fa (diff)
downloadpkgsrc-b75990990f55b1a5d9aff1f16d77341c0e628a77.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/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 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