aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ChangeLog6
-rw-r--r--test/automated/Makefile.in2
2 files changed, 7 insertions, 1 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index bbc841585d1..7b39097d3b5 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,9 @@
12013-09-01 Glenn Morris <rgm@gnu.org>
2
3 * automated/Makefile.in (setwins): Avoid leading space in $wins.
4 Otherwise the sed command used by eg compile-main ends up
5 containing "/*.el". (Bug#15170)
6
12013-08-28 Paul Eggert <eggert@cs.ucla.edu> 72013-08-28 Paul Eggert <eggert@cs.ucla.edu>
2 8
3 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh, 9 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
diff --git a/test/automated/Makefile.in b/test/automated/Makefile.in
index 5e0ca182c65..bf8e62f77cd 100644
--- a/test/automated/Makefile.in
+++ b/test/automated/Makefile.in
@@ -52,7 +52,7 @@ emacs = EMACSLOADPATH=$(lispsrc):$(test) LC_ALL=C $(EMACS) $(EMACSOPT)
52setwins=subdirs=`find . -type d -print`; \ 52setwins=subdirs=`find . -type d -print`; \
53 for file in $$subdirs; do \ 53 for file in $$subdirs; do \
54 case $$file in */.* | */.*/* | */=* | ./data* ) ;; \ 54 case $$file in */.* | */.*/* | */=* | ./data* ) ;; \
55 *) wins="$$wins $$file" ;; \ 55 *) wins="$$wins$${wins:+ }$$file" ;; \
56 esac; \ 56 esac; \
57 done 57 done
58 58