summaryrefslogtreecommitdiff
path: root/textproc/xmlcatmgr/files
diff options
context:
space:
mode:
authorminskim <minskim>2004-05-06 14:39:05 +0000
committerminskim <minskim>2004-05-06 14:39:05 +0000
commit879ff11fa149aaedf2d7becec32dc362c70f05a5 (patch)
treecaf08e6481f5f69f22302730edca939da2f884a4 /textproc/xmlcatmgr/files
parent7edec3e3c20cd36ff4148236a8dbef210f443732 (diff)
downloadpkgsrc-879ff11fa149aaedf2d7becec32dc362c70f05a5.tar.gz
Quote arguments properly for xmlcatmgr. OK'ed by jmmv@.
Diffstat (limited to 'textproc/xmlcatmgr/files')
-rw-r--r--textproc/xmlcatmgr/files/deinstall.tmpl6
-rw-r--r--textproc/xmlcatmgr/files/install.tmpl6
2 files changed, 6 insertions, 6 deletions
diff --git a/textproc/xmlcatmgr/files/deinstall.tmpl b/textproc/xmlcatmgr/files/deinstall.tmpl
index c7e7045498a..0952ce76f89 100644
--- a/textproc/xmlcatmgr/files/deinstall.tmpl
+++ b/textproc/xmlcatmgr/files/deinstall.tmpl
@@ -1,4 +1,4 @@
-# $NetBSD: deinstall.tmpl,v 1.4 2004/01/17 16:00:20 jmmv Exp $
+# $NetBSD: deinstall.tmpl,v 1.5 2004/05/06 14:39:05 minskim Exp $
#
# Unregister SGML/XML catalog entries.
#
@@ -12,14 +12,14 @@ XML_ENTRIES='@XML_ENTRIES@'
case ${STAGE} in
DEINSTALL)
if [ -n "${SGML_ENTRIES}" ]; then
- set -- ${SGML_ENTRIES}
+ set -- @SGML_ENTRIES@
while [ $# -gt 0 ]; do
${XMLCATMGR} -sc ${SGML_CATALOG} remove "$1" "$2"
shift; shift; shift
done
fi
if [ -n "${XML_ENTRIES}" ]; then
- set -- ${XML_ENTRIES}
+ set -- @XML_ENTRIES@
while [ $# -gt 0 ]; do
${XMLCATMGR} -c ${XML_CATALOG} remove "$1" "$2"
shift; shift; shift
diff --git a/textproc/xmlcatmgr/files/install.tmpl b/textproc/xmlcatmgr/files/install.tmpl
index bc995eb27a4..4222f87b45a 100644
--- a/textproc/xmlcatmgr/files/install.tmpl
+++ b/textproc/xmlcatmgr/files/install.tmpl
@@ -1,4 +1,4 @@
-# $NetBSD: install.tmpl,v 1.3 2003/09/08 12:26:22 jmmv Exp $
+# $NetBSD: install.tmpl,v 1.4 2004/05/06 14:39:05 minskim Exp $
#
# Register SGML/XML catalog entries.
#
@@ -12,14 +12,14 @@ XML_ENTRIES='@XML_ENTRIES@'
case ${STAGE} in
POST-INSTALL)
if [ -n "${SGML_ENTRIES}" ]; then
- set -- ${SGML_ENTRIES}
+ set -- @SGML_ENTRIES@
while [ $# -gt 0 ]; do
${XMLCATMGR} -sc ${SGML_CATALOG} add "$1" "$2" "$3"
shift; shift; shift
done
fi
if [ -n "${XML_ENTRIES}" ]; then
- set -- ${XML_ENTRIES}
+ set -- @XML_ENTRIES@
while [ $# -gt 0 ]; do
${XMLCATMGR} -c ${XML_CATALOG} add "$1" "$2" "$3"
shift; shift; shift