diff options
author | Glenn Morris <rgm@gnu.org> | 2013-08-31 19:12:32 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-08-31 19:12:32 -0700 |
commit | f8ccce0306a6f34d9b41627ac8e5ceca16cdbafd (patch) | |
tree | 8c0353c103044c8deffd790a1558f01aef56720c /test/automated/Makefile.in | |
parent | 2e4a0a90718bae5534d74a6dd3d232c7d9bf61be (diff) |
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/automated/Makefile.in')
-rw-r--r-- | test/automated/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/automated/Makefile.in b/test/automated/Makefile.in index 5e0ca182c6..bf8e62f77c 100644 --- a/test/automated/Makefile.in +++ b/test/automated/Makefile.in @@ -52,7 +52,7 @@ emacs = EMACSLOADPATH=$(lispsrc):$(test) LC_ALL=C $(EMACS) $(EMACSOPT) setwins=subdirs=`find . -type d -print`; \ for file in $$subdirs; do \ case $$file in */.* | */.*/* | */=* | ./data* ) ;; \ - *) wins="$$wins $$file" ;; \ + *) wins="$$wins$${wins:+ }$$file" ;; \ esac; \ done |