summaryrefslogtreecommitdiff
path: root/editors/apel
diff options
context:
space:
mode:
authorShigeyuki Fukushima <shige@FreeBSD.org>2001-12-01 21:37:48 +0000
committerShigeyuki Fukushima <shige@FreeBSD.org>2001-12-01 21:37:48 +0000
commitd8000cd312294fc60257b5a9d92856f90c8d5b90 (patch)
tree305670c6feb5fc9f6287272acfd6884980372a57 /editors/apel
parentUpgrade to 2.03 (diff)
Fix {apel,flim}-setupel.el.
Notes
Notes: svn path=/head/; revision=50836
Diffstat (limited to 'editors/apel')
-rw-r--r--editors/apel/files/apel-setupel.el.in4
-rw-r--r--editors/apel/scripts/configure10
2 files changed, 8 insertions, 6 deletions
diff --git a/editors/apel/files/apel-setupel.el.in b/editors/apel/files/apel-setupel.el.in
index 1047e259b991..79c57db20a2b 100644
--- a/editors/apel/files/apel-setupel.el.in
+++ b/editors/apel/files/apel-setupel.el.in
@@ -3,7 +3,7 @@
;; -- by shige@FreeBSD.ORG
(setq load-path (append '(
- "@@LOCALBASE@@/@@EMACS_LIBDIR@@/site-lisp/apel"
- "@@LOCALBASE@@/@@EMACS_LIBDIR_WITH_VER@@/site-lisp/emu"
+ "@@LOCALBASE@@/@@EMACS_VERSION_SITE_LISPDIR@@/apel"
+ "@@LOCALBASE@@/@@EMACS_VERSION_SITE_LISPDIR@@/emu"
) load-path))
(provide 'apel-setupel)
diff --git a/editors/apel/scripts/configure b/editors/apel/scripts/configure
index 083bc7164d33..ffe214ba26f5 100644
--- a/editors/apel/scripts/configure
+++ b/editors/apel/scripts/configure
@@ -4,10 +4,12 @@ for i in ${TARGETS}
do
if [ -f ${WRKDIR}/${i}.in ]; then
cat ${WRKDIR}/${i}.in | /usr/bin/sed \
- -e "s;@@LOCALBASE@@;${LOCALBASE};g" \
- -e "s;@@EMACS_LIBDIR@@;${EMACS_LIBDIR};g" \
- -e "s;@@EMACS_VER@@;${EMACS_VER};g" \
- -e "s;@@EMACS_LIBDIR_WITH_VER@@;${EMACS_LIBDIR_WITH_VER};g" \
+ -e "s;@@LOCALBASE@@;${LOCALBASE};g" \
+ -e "s;@@EMACS_LIBDIR@@;${EMACS_LIBDIR};g" \
+ -e "s;@@EMACS_VER@@;${EMACS_VER};g" \
+ -e "s;@@EMACS_LIBDIR_WITH_VER@@;${EMACS_LIBDIR_WITH_VER};g" \
+ -e "s;@@EMACS_SITE_LISPDIR@@;${EMACS_SITE_LISPDIR};g" \
+ -e "s;@@EMACS_VERSION_SITE_LISPDIR@@;${EMACS_VERSION_SITE_LISPDIR};g" \
> ${WRKDIR}/${i}
fi
done