diff options
author | Shigeyuki Fukushima <shige@FreeBSD.org> | 1999-10-21 11:35:16 +0000 |
---|---|---|
committer | Shigeyuki Fukushima <shige@FreeBSD.org> | 1999-10-21 11:35:16 +0000 |
commit | fdb433642f32a14cbf905c5debd633f72db564a6 (patch) | |
tree | 5504e891646d56ac15dc8a2e52bf14db13715757 /editors/apel | |
parent | Typo (diff) |
Fix too bad dependency.
before: ${PREFIX}/lib/xemacs/site-packages/../xemacs-packages
(If site-packages directory does not exist, this dependency is broken.)
new: ${PREFIX}/lib/xemacs/xemacs-packages
Notes
Notes:
svn path=/head/; revision=22556
Diffstat (limited to 'editors/apel')
-rw-r--r-- | editors/apel/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/apel/Makefile b/editors/apel/Makefile index af616af4fbdb..fa31c17b07ab 100644 --- a/editors/apel/Makefile +++ b/editors/apel/Makefile @@ -53,8 +53,8 @@ BUILD_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR_WITH_VER}/site-lisp/custom.el:${PORTSDI RUN_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR_WITH_VER}/site-lisp/custom.el:${PORTSDIR}/editors/custom-${EMACS_PORT} .endif .if defined(EMACS_PACKAGESDIR) -BUILD_DEPENDS+= ${PREFIX}/${EMACS_PACKAGESDIR}/../xemacs-packages/lisp/xemacs-base/advice.el:${PORTSDIR}/editors/xemacs-sumo-packages -RUN_DEPENDS+= ${PREFIX}/${EMACS_PACKAGESDIR}/../xemacs-packages/lisp/xemacs-base/advice.el:${PORTSDIR}/editors/xemacs-sumo-packages +BUILD_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR}/xemacs-packages/lisp/xemacs-base/advice.el:${PORTSDIR}/editors/xemacs-sumo-packages +RUN_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR}/xemacs-packages/lisp/xemacs-base/advice.el:${PORTSDIR}/editors/xemacs-sumo-packages .endif SCRIPTS_ENV+= EMACS_LIBDIR=${EMACS_LIBDIR} EMACS_VER=${EMACS_VER} \ |