diff options
| author | Glenn Morris | 2022-01-12 09:37:39 -0800 |
|---|---|---|
| committer | Glenn Morris | 2022-01-12 09:37:39 -0800 |
| commit | 0cbc41322ef626b28e9cd90be970b2f2f5e86cd7 (patch) | |
| tree | 4799fa5c23602d99d19ba841c11b7b78bd25e211 /leim | |
| parent | 745580a36dc284d322a8d266ed39f80af3231d51 (diff) | |
| download | emacs-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.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@ | |||
| 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. |
| 38 | unexport EMACSDATA EMACSDOC EMACSPATH | 38 | unexport 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. |
| 42 | EMACS = ../src/emacs${EXEEXT} | 42 | EMACS = ../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. | 45 | RUN_EMACS = '$(EMACS)' -batch --no-site-file --no-site-lisp |
| 46 | RUN_EMACS = EMACSLOADPATH= '$(EMACS)' -batch --no-site-file --no-site-lisp | ||
| 47 | 46 | ||
| 48 | MKDIR_P = @MKDIR_P@ | 47 | MKDIR_P = @MKDIR_P@ |
| 49 | 48 | ||