diff options
| author | Glenn Morris | 2022-01-12 09:35:43 -0800 |
|---|---|---|
| committer | Glenn Morris | 2022-01-12 09:35:43 -0800 |
| commit | 745580a36dc284d322a8d266ed39f80af3231d51 (patch) | |
| tree | 04ce8828f5d721cfa7f49cc019fd95df67988df8 /lib-src | |
| parent | db745f37aec2adc44ec4b2eae0720e0365ed0ca9 (diff) | |
| download | emacs-745580a36dc284d322a8d266ed39f80af3231d51.tar.gz emacs-745580a36dc284d322a8d266ed39f80af3231d51.zip | |
Avoid user environment interfering with bootstrap
* Makefile.in, admin/unidata/Makefile.in:
* doc/misc/Makefile.in, lib-src/Makefile.in:
Don't export user environment variables that can affect running
emacs. (Bug#53038)
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index c25ba5c974d..0453b935068 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -20,6 +20,9 @@ | |||
| 20 | 20 | ||
| 21 | SHELL = @SHELL@ | 21 | SHELL = @SHELL@ |
| 22 | 22 | ||
| 23 | # Prevent any settings in the user environment causing problems. | ||
| 24 | unexport EMACSDATA EMACSDOC EMACSLOADPATH EMACSPATH | ||
| 25 | |||
| 23 | # Following ../lisp/Makefile.in. | 26 | # Following ../lisp/Makefile.in. |
| 24 | EMACS = ../src/emacs${EXEEXT} | 27 | EMACS = ../src/emacs${EXEEXT} |
| 25 | EMACSOPT = -batch --no-site-file --no-site-lisp | 28 | EMACSOPT = -batch --no-site-file --no-site-lisp |