summaryrefslogtreecommitdiff
path: root/editors/mew2-emacs20/files/tmpl2file.sh
diff options
context:
space:
mode:
Diffstat (limited to 'editors/mew2-emacs20/files/tmpl2file.sh')
-rw-r--r--editors/mew2-emacs20/files/tmpl2file.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/editors/mew2-emacs20/files/tmpl2file.sh b/editors/mew2-emacs20/files/tmpl2file.sh
deleted file mode 100644
index ca169ce248c2..000000000000
--- a/editors/mew2-emacs20/files/tmpl2file.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-for f in ${TMPL_FILES}; do
- sed \
- -e "s,%%EMACS_CMD%%,${EMACS_CMD},g" \
- -e "s,%%EMACS_PORTSDIR%%,${EMACS_PORTSDIR},g" \
- -e "s,%%PKGNAME%%,${PKGNAME},g" \
- -e "s,%%EMACS_PORT_NAME%%,${EMACS_PORT_NAME},g" \
- -e "s,%%PORTNAME%%,${PORTNAME},g" \
- -e "s,%%ELISPDIR%%,${ELISPDIR},g" \
- -e "s,%%INFODIR%%,${INFODIR},g" \
- -e "s,%%ETCDIR%%,${ETCDIR},g" \
- < ${FILESDIR}/${f}.tmpl > ${WRKTMPDIR}/${f}
-done