aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGlenn Morris2013-11-28 15:50:09 -0800
committerGlenn Morris2013-11-28 15:50:09 -0800
commit0845be757d3782ddc79d92b34a3f728b7555d0de (patch)
treeb1e8d5a01e239591c6145eb68543316913aada00 /test
parentbb28366f4004f6be16000a23b277e27471b472b8 (diff)
downloademacs-0845be757d3782ddc79d92b34a3f728b7555d0de.tar.gz
emacs-0845be757d3782ddc79d92b34a3f728b7555d0de.zip
Replace PATH_SEP with pre-existing SEPCHAR.
* configure.ac: * test/automated/Makefile.in: Use SEPCHAR in place of PATH_SEP.
Diffstat (limited to 'test')
-rw-r--r--test/ChangeLog4
-rw-r--r--test/automated/Makefile.in4
2 files changed, 6 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index 4455cf03797..25d17fc2af4 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,7 @@
12013-11-28 Glenn Morris <rgm@gnu.org>
2
3 * automated/Makefile.in (SEPCHAR): Use in place of PATH_SEP.
4
12013-11-28 Eli Zaretskii <eliz@gnu.org> 52013-11-28 Eli Zaretskii <eliz@gnu.org>
2 6
3 * automated/Makefile.in (PATH_SEP): Set this instead of 7 * automated/Makefile.in (PATH_SEP): Set this instead of
diff --git a/test/automated/Makefile.in b/test/automated/Makefile.in
index fa2fddfea80..ede81960237 100644
--- a/test/automated/Makefile.in
+++ b/test/automated/Makefile.in
@@ -22,7 +22,7 @@ SHELL = @SHELL@
22srcdir = @srcdir@ 22srcdir = @srcdir@
23VPATH = $(srcdir) 23VPATH = $(srcdir)
24 24
25PATH_SEP = @PATH_SEP@ 25SEPCHAR = @SEPCHAR@
26 26
27# Empty for all systems except MinGW, where xargs needs an explicit 27# Empty for all systems except MinGW, where xargs needs an explicit
28# limitation. 28# limitation.
@@ -36,7 +36,7 @@ EMACS = ../../src/emacs
36# Command line flags for Emacs. 36# Command line flags for Emacs.
37# Apparently MSYS bash would convert "-L :" to "-L ;" anyway, 37# Apparently MSYS bash would convert "-L :" to "-L ;" anyway,
38# but we might as well be explicit. 38# but we might as well be explicit.
39EMACSOPT = -batch --no-site-file --no-site-lisp -L "$(PATH_SEP)$(srcdir)" 39EMACSOPT = -batch --no-site-file --no-site-lisp -L "$(SEPCHAR)$(srcdir)"
40 40
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 =