diff options
Diffstat (limited to 'leim/Makefile.in')
-rw-r--r-- | leim/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in index 35111ae022..c1a79a75d0 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in @@ -25,15 +25,15 @@ SHELL = @SHELL@ # Here are the things that we expect ../configure to edit. srcdir=@srcdir@ -abs_srcdir=@abs_srcdir@ # Which Emacs to use to convert TIT files to Emacs Lisp files, # byte-compile Emacs Lisp files, and generate the file leim-list.el. EMACS = ../src/emacs # How to run Emacs. -RUN_EMACS = EMACSLOADPATH="${abs_srcdir}/../lisp" LC_ALL=C \ - "${EMACS}" -batch --no-site-file --no-site-lisp +# Prevent any setting of EMACSLOADPATH in user environment causing problems. +RUN_EMACS = unset EMACSLOADPATH; LC_ALL=C "${EMACS}" -batch \ + --no-site-file --no-site-lisp MKDIR_P = @MKDIR_P@ |