aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorGlenn Morris2022-01-12 09:37:39 -0800
committerGlenn Morris2022-01-12 09:37:39 -0800
commit0cbc41322ef626b28e9cd90be970b2f2f5e86cd7 (patch)
tree4799fa5c23602d99d19ba841c11b7b78bd25e211 /admin
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 'admin')
-rw-r--r--admin/grammars/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/grammars/Makefile.in b/admin/grammars/Makefile.in
index 83ac2ef46ef..6f699430895 100644
--- a/admin/grammars/Makefile.in
+++ b/admin/grammars/Makefile.in
@@ -31,10 +31,10 @@ top_builddir = @top_builddir@
31-include ${top_builddir}/src/verbose.mk 31-include ${top_builddir}/src/verbose.mk
32 32
33# Prevent any settings in the user environment causing problems. 33# Prevent any settings in the user environment causing problems.
34unexport EMACSDATA EMACSDOC EMACSPATH 34unexport EMACSDATA EMACSDOC EMACSLOADPATH EMACSPATH
35 35
36EMACS = ${top_builddir}/src/emacs 36EMACS = ${top_builddir}/src/emacs
37emacs = EMACSLOADPATH= "${EMACS}" -batch --no-site-file --no-site-lisp --eval '(setq load-prefer-newer t)' 37emacs = "${EMACS}" -batch --no-site-file --no-site-lisp --eval '(setq load-prefer-newer t)'
38 38
39make_bovine = ${emacs} -l semantic/bovine/grammar -f bovine-batch-make-parser 39make_bovine = ${emacs} -l semantic/bovine/grammar -f bovine-batch-make-parser
40make_wisent = ${emacs} -l semantic/wisent/grammar -f wisent-batch-make-parser 40make_wisent = ${emacs} -l semantic/wisent/grammar -f wisent-batch-make-parser