aboutsummaryrefslogtreecommitdiffstats
path: root/leim
diff options
context:
space:
mode:
authorGlenn Morris2022-01-12 09:37:39 -0800
committerGlenn Morris2022-01-12 09:37:39 -0800
commit0cbc41322ef626b28e9cd90be970b2f2f5e86cd7 (patch)
tree4799fa5c23602d99d19ba841c11b7b78bd25e211 /leim
parent745580a36dc284d322a8d266ed39f80af3231d51 (diff)
downloademacs-0cbc41322ef626b28e9cd90be970b2f2f5e86cd7.tar.gz
emacs-0cbc41322ef626b28e9cd90be970b2f2f5e86cd7.zip
Prefer unexport in Makefiles
* admin/grammars/Makefile.in, leim/Makefile.in: * lisp/Makefile.in, test/Makefile.in: Use unexport for EMACSLOADPATH.
Diffstat (limited to 'leim')
-rw-r--r--leim/Makefile.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in
index a574a108454..2a477d868b3 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -35,15 +35,14 @@ EXEEXT = @EXEEXT@
35-include ${top_builddir}/src/verbose.mk 35-include ${top_builddir}/src/verbose.mk
36 36
37# Prevent any settings in the user environment causing problems. 37# Prevent any settings in the user environment causing problems.
38unexport EMACSDATA EMACSDOC EMACSPATH 38unexport EMACSDATA EMACSDOC EMACSLOADPATH EMACSPATH
39 39
40# Which Emacs to use to convert TIT files to Emacs Lisp files, 40# Which Emacs to use to convert TIT files to Emacs Lisp files,
41# and generate the file leim-list.el. 41# and generate the file leim-list.el.
42EMACS = ../src/emacs${EXEEXT} 42EMACS = ../src/emacs${EXEEXT}
43 43
44# How to run Emacs. 44# How to run Emacs.
45# Prevent any setting of EMACSLOADPATH in user environment causing problems. 45RUN_EMACS = '$(EMACS)' -batch --no-site-file --no-site-lisp
46RUN_EMACS = EMACSLOADPATH= '$(EMACS)' -batch --no-site-file --no-site-lisp
47 46
48MKDIR_P = @MKDIR_P@ 47MKDIR_P = @MKDIR_P@
49 48