aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2014-04-10 23:51:49 -0700
committerGlenn Morris2014-04-10 23:51:49 -0700
commite088b01d290f69613cc3a555535baa1ed1b3e578 (patch)
treea5ece2a0c8bf4c979343838f3221ef47cd4152de /lisp
parent536aa4668198bf4851356a8e3a57b7f8969014c3 (diff)
downloademacs-e088b01d290f69613cc3a555535baa1ed1b3e578.tar.gz
emacs-e088b01d290f69613cc3a555535baa1ed1b3e578.zip
Avoid EMACSDATA in user environment interfering with building
* admin/grammars/Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): * leim/Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): * lisp/Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): * test/automated/Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport. Fixes: debbugs:16429
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/Makefile.in3
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f0e3d17613c..0294155cad9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12014-04-11 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport. (Bug#16429)
4
12014-04-11 Stefan Monnier <monnier@iro.umontreal.ca> 52014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 Ediff's overlay priorities cause more trouble than they solve. 7 Ediff's overlay priorities cause more trouble than they solve.
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 50306ee6a20..9673be30608 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -107,6 +107,9 @@ COMPILE_FIRST = \
107 $(lisp)/emacs-lisp/bytecomp.elc \ 107 $(lisp)/emacs-lisp/bytecomp.elc \
108 $(lisp)/emacs-lisp/autoload.elc 108 $(lisp)/emacs-lisp/autoload.elc
109 109
110# Prevent any settings in the user environment causing problems.
111unexport EMACSDATA EMACSDOC EMACSPATH
112
110# The actual Emacs command run in the targets below. 113# The actual Emacs command run in the targets below.
111# Prevent any setting of EMACSLOADPATH in user environment causing problems. 114# Prevent any setting of EMACSLOADPATH in user environment causing problems.
112emacs = EMACSLOADPATH= '$(EMACS)' $(EMACSOPT) 115emacs = EMACSLOADPATH= '$(EMACS)' $(EMACSOPT)