* test/automated/Makefile.in (WRITE_LOG): Use POSIX redirection.
+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
## 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.