summaryrefslogtreecommitdiff
path: root/test/automated/Makefile.in
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-05-20 17:44:34 -0700
committerGlenn Morris <rgm@gnu.org>2012-05-20 17:44:34 -0700
commitb847032c75e0cb4041a8736886e7054beb6f8696 (patch)
treebb6b972803658022ca3ac04629105f14c204a1b9 /test/automated/Makefile.in
parent1b170bc63c2f3a3fbe6ba6996d5a015e82634909 (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.in2
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" ;; \