aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGlenn Morris2013-08-31 19:12:32 -0700
committerGlenn Morris2013-08-31 19:12:32 -0700
commitf8ccce0306a6f34d9b41627ac8e5ceca16cdbafd (patch)
tree8c0353c103044c8deffd790a1558f01aef56720c /test
parent2e4a0a90718bae5534d74a6dd3d232c7d9bf61be (diff)
downloademacs-f8ccce0306a6f34d9b41627ac8e5ceca16cdbafd.tar.gz
emacs-f8ccce0306a6f34d9b41627ac8e5ceca16cdbafd.zip
Tweak to Makefile rules that list *.el files
* lisp/Makefile.in (setwins, setwins_almost, setwins_for_subdirs): * test/automated/Makefile.in (setwins): Avoid leading space in $wins. Otherwise the sed command used by eg compile-main ends up containing "/*.el". Fixes: debbugs:15170
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