diff options
author | Glenn Morris <rgm@gnu.org> | 2022-01-12 09:37:39 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2022-01-12 09:37:39 -0800 |
commit | 0cbc41322ef626b28e9cd90be970b2f2f5e86cd7 (patch) | |
tree | 4799fa5c23602d99d19ba841c11b7b78bd25e211 /leim | |
parent | 745580a36dc284d322a8d266ed39f80af3231d51 (diff) | |
download | emacs-0cbc41322ef626b28e9cd90be970b2f2f5e86cd7.tar.gz |
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.in | 5 |
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@ -include ${top_builddir}/src/verbose.mk # Prevent any settings in the user environment causing problems. -unexport EMACSDATA EMACSDOC EMACSPATH +unexport EMACSDATA EMACSDOC EMACSLOADPATH EMACSPATH # Which Emacs to use to convert TIT files to Emacs Lisp files, # and generate the file leim-list.el. EMACS = ../src/emacs${EXEEXT} # How to run Emacs. -# Prevent any setting of EMACSLOADPATH in user environment causing problems. -RUN_EMACS = EMACSLOADPATH= '$(EMACS)' -batch --no-site-file --no-site-lisp +RUN_EMACS = '$(EMACS)' -batch --no-site-file --no-site-lisp MKDIR_P = @MKDIR_P@ |