diff options
author | Glenn Morris <rgm@gnu.org> | 2013-11-02 13:30:13 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-11-02 13:30:13 -0700 |
commit | 90d2a845ccfde9f25aa3fa67f27c60601e104ccd (patch) | |
tree | 98c886a1db6c478e505a6ccdb39ee6ef04d73795 /leim | |
parent | bd9565cdfbb06616a6601c7a00489906a9d1acaf (diff) |
* leim/Makefile.in (buildlisppath): Remove.
(RUN_EMACS): Use abs_srcdir directly.
Diffstat (limited to 'leim')
-rw-r--r-- | leim/ChangeLog | 5 | ||||
-rw-r--r-- | leim/Makefile.in | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog index 45a73f0be8..e71017e837 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog @@ -1,3 +1,8 @@ +2013-11-02 Glenn Morris <rgm@gnu.org> + + * Makefile.in (buildlisppath): Remove. + (RUN_EMACS): Use abs_srcdir directly. + 2013-10-24 Glenn Morris <rgm@gnu.org> * Makefile.in (.el.elc, changed.tit, changed.misc, leim-list.el) diff --git a/leim/Makefile.in b/leim/Makefile.in index d0e77e2f0f..35111ae022 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in @@ -31,10 +31,8 @@ abs_srcdir=@abs_srcdir@ # byte-compile Emacs Lisp files, and generate the file leim-list.el. EMACS = ../src/emacs -buildlisppath=${abs_srcdir}/../lisp - # How to run Emacs. -RUN_EMACS = EMACSLOADPATH="$(buildlisppath)" LC_ALL=C \ +RUN_EMACS = EMACSLOADPATH="${abs_srcdir}/../lisp" LC_ALL=C \ "${EMACS}" -batch --no-site-file --no-site-lisp MKDIR_P = @MKDIR_P@ |