diff options
author | Shigeyuki Fukushima <shige@FreeBSD.org> | 2001-12-02 05:37:48 +0800 |
---|---|---|
committer | Shigeyuki Fukushima <shige@FreeBSD.org> | 2001-12-02 05:37:48 +0800 |
commit | d8000cd312294fc60257b5a9d92856f90c8d5b90 (patch) | |
tree | 305670c6feb5fc9f6287272acfd6884980372a57 /editors/apel | |
parent | 484b2245b733ea477120ee25c2b76e9f92cafe70 (diff) | |
download | freebsd-ports-gnome-d8000cd312294fc60257b5a9d92856f90c8d5b90.tar.gz freebsd-ports-gnome-d8000cd312294fc60257b5a9d92856f90c8d5b90.tar.zst freebsd-ports-gnome-d8000cd312294fc60257b5a9d92856f90c8d5b90.zip |
Fix {apel,flim}-setupel.el.
Diffstat (limited to 'editors/apel')
-rw-r--r-- | editors/apel/files/apel-setupel.el.in | 4 | ||||
-rw-r--r-- | editors/apel/scripts/configure | 10 |
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 |