aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2022-01-12 09:37:39 -0800
committerGlenn Morris2022-01-12 09:37:39 -0800
commit0cbc41322ef626b28e9cd90be970b2f2f5e86cd7 (patch)
tree4799fa5c23602d99d19ba841c11b7b78bd25e211 /lisp
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 'lisp')
-rw-r--r--lisp/Makefile.in5
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.
104unexport EMACSDATA EMACSDOC EMACSPATH 104unexport 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. 107emacs = '$(EMACS)' $(EMACSOPT)
108emacs = EMACSLOADPATH= '$(EMACS)' $(EMACSOPT)
109 108
110## Subdirectories, relative to builddir. 109## Subdirectories, relative to builddir.
111SUBDIRS = $(sort $(shell find ${srcdir} -type d -print)) 110SUBDIRS = $(sort $(shell find ${srcdir} -type d -print))