aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGlenn Morris2014-04-10 23:51:49 -0700
committerGlenn Morris2014-04-10 23:51:49 -0700
commite088b01d290f69613cc3a555535baa1ed1b3e578 (patch)
treea5ece2a0c8bf4c979343838f3221ef47cd4152de /test
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 'test')
-rw-r--r--test/ChangeLog4
-rw-r--r--test/automated/Makefile.in3
2 files changed, 7 insertions, 0 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index 7f56fc4c6c3..504cf85c5ec 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,7 @@
12014-04-11 Glenn Morris <rgm@gnu.org>
2
3 * automated/Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport.
4
12014-04-11 Paul Eggert <eggert@cs.ucla.edu> 52014-04-11 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 * automated/electric-tests.el: Fix spelling error in test name. 7 * automated/electric-tests.el: Fix spelling error in test name.
diff --git a/test/automated/Makefile.in b/test/automated/Makefile.in
index 764b80ece93..9d9f60e3efe 100644
--- a/test/automated/Makefile.in
+++ b/test/automated/Makefile.in
@@ -41,6 +41,9 @@ EMACSOPT = -batch --no-site-file --no-site-lisp -L "$(SEPCHAR)$(srcdir)"
41# Extra flags to pass to the byte compiler. 41# Extra flags to pass to the byte compiler.
42BYTE_COMPILE_EXTRA_FLAGS = 42BYTE_COMPILE_EXTRA_FLAGS =
43 43
44# Prevent any settings in the user environment causing problems.
45unexport EMACSDATA EMACSDOC EMACSPATH
46
44# The actual Emacs command run in the targets below. 47# The actual Emacs command run in the targets below.
45# Prevent any setting of EMACSLOADPATH in user environment causing problems. 48# Prevent any setting of EMACSLOADPATH in user environment causing problems.
46emacs = EMACSLOADPATH= LC_ALL=C EMACS_TEST_DIRECTORY=$(srcdir) "$(EMACS)" $(EMACSOPT) 49emacs = EMACSLOADPATH= LC_ALL=C EMACS_TEST_DIRECTORY=$(srcdir) "$(EMACS)" $(EMACSOPT)