diff options
| author | Glenn Morris | 2013-11-28 15:50:09 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-11-28 15:50:09 -0800 |
| commit | 0845be757d3782ddc79d92b34a3f728b7555d0de (patch) | |
| tree | b1e8d5a01e239591c6145eb68543316913aada00 /test | |
| parent | bb28366f4004f6be16000a23b277e27471b472b8 (diff) | |
| download | emacs-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/ChangeLog | 4 | ||||
| -rw-r--r-- | test/automated/Makefile.in | 4 |
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 @@ | |||
| 1 | 2013-11-28 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * automated/Makefile.in (SEPCHAR): Use in place of PATH_SEP. | ||
| 4 | |||
| 1 | 2013-11-28 Eli Zaretskii <eliz@gnu.org> | 5 | 2013-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@ | |||
| 22 | srcdir = @srcdir@ | 22 | srcdir = @srcdir@ |
| 23 | VPATH = $(srcdir) | 23 | VPATH = $(srcdir) |
| 24 | 24 | ||
| 25 | PATH_SEP = @PATH_SEP@ | 25 | SEPCHAR = @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. |
| 39 | EMACSOPT = -batch --no-site-file --no-site-lisp -L "$(PATH_SEP)$(srcdir)" | 39 | EMACSOPT = -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. |
| 42 | BYTE_COMPILE_EXTRA_FLAGS = | 42 | BYTE_COMPILE_EXTRA_FLAGS = |