emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master b577fe2 1/2: Use POSIX redirection.


From: Wolfgang Jenkner
Subject: [Emacs-diffs] master b577fe2 1/2: Use POSIX redirection.
Date: Thu, 15 Jan 2015 23:23:49 +0000

branch: master
commit b577fe28c73cacfd1e81dca5ebf8cc7b0830d957
Author: Wolfgang Jenkner <address@hidden>
Commit: Wolfgang Jenkner <address@hidden>

    Use POSIX redirection.
    
    * test/automated/Makefile.in (WRITE_LOG): Use POSIX redirection.
---
 test/ChangeLog             |    4 ++++
 test/automated/Makefile.in |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/test/ChangeLog b/test/ChangeLog
index a33ec87..95d3e54 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-15  Wolfgang Jenkner  <address@hidden>
+
+       * automated/Makefile.in (WRITE_LOG): Use POSIX redirection.
+
 2015-01-15  Stefan Monnier  <address@hidden>
 
        * automated/eieio-test-methodinvoke.el (eieio-test-method-store): Add
diff --git a/test/automated/Makefile.in b/test/automated/Makefile.in
index ed75781..7243e8a 100644
--- a/test/automated/Makefile.in
+++ b/test/automated/Makefile.in
@@ -64,7 +64,7 @@ all: check
 
 ## Ignore any test errors so we can continue to test other files.
 ## But compilation errors are always fatal.
-WRITE_LOG = >& $@ || { stat=ERROR; cat $@; }; echo $$stat: $@
+WRITE_LOG = > $@ 2>&1 || { stat=ERROR; cat $@; }; echo $$stat: $@
 
 ## I'd prefer to use -emacs -f ert-run-tests-batch-and-exit rather
 ## than || true, since the former makes problems more obvious.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]