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 /admin | |
| 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 'admin')
| -rw-r--r-- | admin/grammars/Makefile.in | 4 |
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. |
| 34 | unexport EMACSDATA EMACSDOC EMACSPATH | 34 | unexport EMACSDATA EMACSDOC EMACSLOADPATH EMACSPATH |
| 35 | 35 | ||
| 36 | EMACS = ${top_builddir}/src/emacs | 36 | EMACS = ${top_builddir}/src/emacs |
| 37 | emacs = EMACSLOADPATH= "${EMACS}" -batch --no-site-file --no-site-lisp --eval '(setq load-prefer-newer t)' | 37 | emacs = "${EMACS}" -batch --no-site-file --no-site-lisp --eval '(setq load-prefer-newer t)' |
| 38 | 38 | ||
| 39 | make_bovine = ${emacs} -l semantic/bovine/grammar -f bovine-batch-make-parser | 39 | make_bovine = ${emacs} -l semantic/bovine/grammar -f bovine-batch-make-parser |
| 40 | make_wisent = ${emacs} -l semantic/wisent/grammar -f wisent-batch-make-parser | 40 | make_wisent = ${emacs} -l semantic/wisent/grammar -f wisent-batch-make-parser |