Don't use >& for I/O redirection

* Makefile.am (check-go-tool): Don't use >& for I/O redirection.
	* Makefile.in: Regenerate.

From-SVN: r249236
This commit is contained in:
Rainer Orth
2017-06-16 06:58:06 +00:00
committed by Rainer Orth
parent 7d594224c2
commit 0186cacf95
3 changed files with 8 additions and 3 deletions

View File

@@ -180,7 +180,7 @@ check-go-tool: go$(EXEEXT) check-head check-gccgo
$(CHECK_ENV) \
GOPATH=`cd check-go-dir && $(PWD_COMMAND)`; \
export GOPATH; \
(cd check-go-dir/src/cmd/go && $(abs_builddir)/go$(EXEEXT) test -test.short -test.v) >& cmd_go-testlog || true
(cd check-go-dir/src/cmd/go && $(abs_builddir)/go$(EXEEXT) test -test.short -test.v) > cmd_go-testlog 2>&1 || true
grep '^--- ' cmd_go-testlog | sed -e 's/^--- \(.*\) ([^)]*)$$/\1/'
# The check targets runs the tests and assembles the output files.