diff options
| author | Glenn Morris | 2012-05-20 17:44:34 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-05-20 17:44:34 -0700 |
| commit | b847032c75e0cb4041a8736886e7054beb6f8696 (patch) | |
| tree | bb6b972803658022ca3ac04629105f14c204a1b9 /test | |
| parent | 1b170bc63c2f3a3fbe6ba6996d5a015e82634909 (diff) | |
| download | emacs-b847032c75e0cb4041a8736886e7054beb6f8696.tar.gz emacs-b847032c75e0cb4041a8736886e7054beb6f8696.zip | |
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')
| -rw-r--r-- | test/ChangeLog | 4 | ||||
| -rw-r--r-- | test/automated/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index f05c94152a3..ba6162ca241 100644 --- a/test/ChangeLog +++ b/test/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-05-21 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * automated/Makefile.in (setwins): Scrap superfluous subshell. | ||
| 4 | |||
| 1 | 2012-05-15 Teodor Zlatanov <tzz@lifelogs.com> | 5 | 2012-05-15 Teodor Zlatanov <tzz@lifelogs.com> |
| 2 | 6 | ||
| 3 | * automated/url-util-tests.el: New file to test | 7 | * automated/url-util-tests.el: New file to test |
diff --git a/test/automated/Makefile.in b/test/automated/Makefile.in index c07d5a1897d..4f2e8a59e49 100644 --- a/test/automated/Makefile.in +++ b/test/automated/Makefile.in | |||
| @@ -48,7 +48,7 @@ BYTE_COMPILE_EXTRA_FLAGS = | |||
| 48 | emacs = EMACSLOADPATH=$(lispsrc):$(test) LC_ALL=C $(EMACS) $(EMACSOPT) | 48 | emacs = EMACSLOADPATH=$(lispsrc):$(test) LC_ALL=C $(EMACS) $(EMACSOPT) |
| 49 | 49 | ||
| 50 | # Common command to find subdirectories | 50 | # Common command to find subdirectories |
| 51 | setwins=subdirs=`(find . -type d -print)`; \ | 51 | setwins=subdirs=`find . -type d -print`; \ |
| 52 | for file in $$subdirs; do \ | 52 | for file in $$subdirs; do \ |
| 53 | case $$file in */.* | */.*/* | */=* ) ;; \ | 53 | case $$file in */.* | */.*/* | */=* ) ;; \ |
| 54 | *) wins="$$wins $$file" ;; \ | 54 | *) wins="$$wins $$file" ;; \ |