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 /lisp | |
| 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 'lisp')
| -rw-r--r-- | lisp/Makefile.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index d29dec08a5e..3a72034463c 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -101,11 +101,10 @@ MAIN_FIRST = ./emacs-lisp/eieio.el ./emacs-lisp/eieio-base.el \ | |||
| 101 | ./cedet/semantic/db.el ./emacs-lisp/cconv.el | 101 | ./cedet/semantic/db.el ./emacs-lisp/cconv.el |
| 102 | 102 | ||
| 103 | # Prevent any settings in the user environment causing problems. | 103 | # Prevent any settings in the user environment causing problems. |
| 104 | unexport EMACSDATA EMACSDOC EMACSPATH | 104 | unexport EMACSDATA EMACSDOC EMACSLOADPATH EMACSPATH |
| 105 | 105 | ||
| 106 | # The actual Emacs command run in the targets below. | 106 | # The actual Emacs command run in the targets below. |
| 107 | # Prevent any setting of EMACSLOADPATH in user environment causing problems. | 107 | emacs = '$(EMACS)' $(EMACSOPT) |
| 108 | emacs = EMACSLOADPATH= '$(EMACS)' $(EMACSOPT) | ||
| 109 | 108 | ||
| 110 | ## Subdirectories, relative to builddir. | 109 | ## Subdirectories, relative to builddir. |
| 111 | SUBDIRS = $(sort $(shell find ${srcdir} -type d -print)) | 110 | SUBDIRS = $(sort $(shell find ${srcdir} -type d -print)) |