]> git.eshelyaron.com Git - emacs.git/commitdiff
Use POSIX redirection.
authorWolfgang Jenkner <wjenkner@inode.at>
Thu, 15 Jan 2015 18:56:57 +0000 (19:56 +0100)
committerWolfgang Jenkner <wjenkner@inode.at>
Thu, 15 Jan 2015 22:53:59 +0000 (23:53 +0100)
* test/automated/Makefile.in (WRITE_LOG): Use POSIX redirection.

test/ChangeLog
test/automated/Makefile.in

index a33ec8793f4548b2052cc8f08d7213d161f4905c..95d3e544aabbebadaef174c5911d4d008f142802 100644 (file)
@@ -1,3 +1,7 @@
+2015-01-15  Wolfgang Jenkner  <wjenkner@inode.at>
+
+       * automated/Makefile.in (WRITE_LOG): Use POSIX redirection.
+
 2015-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * automated/eieio-test-methodinvoke.el (eieio-test-method-store): Add
index ed757817ae03d21103f4d615a357e499427be3af..7243e8af14ab06e187decff366a7de1ee2d90d2e 100644 (file)
@@ -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.