diff options
author | Glenn Morris <rgm@gnu.org> | 2012-05-20 17:44:34 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-05-20 17:44:34 -0700 |
commit | b847032c75e0cb4041a8736886e7054beb6f8696 (patch) | |
tree | bb6b972803658022ca3ac04629105f14c204a1b9 /test/automated/Makefile.in | |
parent | 1b170bc63c2f3a3fbe6ba6996d5a015e82634909 (diff) |
Command substitution already runs in a subshell
* Makefile.in (install-arch-indep, install-doc, install-info, uninstall):
* leim/Makefile.in (leim-list.el, install):
* lib-src/Makefile.in (insrcdir, $(DESTDIR)${archlibdir}):
* lisp/Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
* test/automated/Makefile.in (setwins):
Scrap superfluous subshells.
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 c07d5a1897..4f2e8a59e4 100644 --- a/test/automated/Makefile.in +++ b/test/automated/Makefile.in @@ -48,7 +48,7 @@ BYTE_COMPILE_EXTRA_FLAGS = emacs = EMACSLOADPATH=$(lispsrc):$(test) LC_ALL=C $(EMACS) $(EMACSOPT) # Common command to find subdirectories -setwins=subdirs=`(find . -type d -print)`; \ +setwins=subdirs=`find . -type d -print`; \ for file in $$subdirs; do \ case $$file in */.* | */.*/* | */=* ) ;; \ *) wins="$$wins $$file" ;; \ |