Commit 0186cacf by Rainer Orth Committed by Rainer Orth

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
parent 7d594224
2017-06-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* Makefile.am (check-go-tool): Don't use >& for I/O redirection.
* Makefile.in: Regenerate.
2017-06-14 Ian Lance Taylor <iant@golang.org> 2017-06-14 Ian Lance Taylor <iant@golang.org>
* Makefile.am (libgosrcdir): Define. * Makefile.am (libgosrcdir): Define.
......
...@@ -180,7 +180,7 @@ check-go-tool: go$(EXEEXT) check-head check-gccgo ...@@ -180,7 +180,7 @@ check-go-tool: go$(EXEEXT) check-head check-gccgo
$(CHECK_ENV) \ $(CHECK_ENV) \
GOPATH=`cd check-go-dir && $(PWD_COMMAND)`; \ GOPATH=`cd check-go-dir && $(PWD_COMMAND)`; \
export GOPATH; \ 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/' grep '^--- ' cmd_go-testlog | sed -e 's/^--- \(.*\) ([^)]*)$$/\1/'
# The check targets runs the tests and assembles the output files. # The check targets runs the tests and assembles the output files.
......
...@@ -582,8 +582,8 @@ distclean-generic: ...@@ -582,8 +582,8 @@ distclean-generic:
maintainer-clean-generic: maintainer-clean-generic:
@echo "This command is intended for maintainers to use" @echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild." @echo "it deletes files that may require special tools to rebuild."
@NATIVE_FALSE@install-exec-local:
@NATIVE_FALSE@uninstall-local: @NATIVE_FALSE@uninstall-local:
@NATIVE_FALSE@install-exec-local:
clean: clean-am clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-noinstPROGRAMS \ clean-am: clean-binPROGRAMS clean-generic clean-noinstPROGRAMS \
...@@ -737,7 +737,7 @@ s-zdefaultcc: Makefile ...@@ -737,7 +737,7 @@ s-zdefaultcc: Makefile
@NATIVE_TRUE@ $(CHECK_ENV) \ @NATIVE_TRUE@ $(CHECK_ENV) \
@NATIVE_TRUE@ GOPATH=`cd check-go-dir && $(PWD_COMMAND)`; \ @NATIVE_TRUE@ GOPATH=`cd check-go-dir && $(PWD_COMMAND)`; \
@NATIVE_TRUE@ export GOPATH; \ @NATIVE_TRUE@ export GOPATH; \
@NATIVE_TRUE@ (cd check-go-dir/src/cmd/go && $(abs_builddir)/go$(EXEEXT) test -test.short -test.v) >& cmd_go-testlog || true @NATIVE_TRUE@ (cd check-go-dir/src/cmd/go && $(abs_builddir)/go$(EXEEXT) test -test.short -test.v) > cmd_go-testlog 2>&1 || true
@NATIVE_TRUE@ grep '^--- ' cmd_go-testlog | sed -e 's/^--- \(.*\) ([^)]*)$$/\1/' @NATIVE_TRUE@ grep '^--- ' cmd_go-testlog | sed -e 's/^--- \(.*\) ([^)]*)$$/\1/'
# The check targets runs the tests and assembles the output files. # The check targets runs the tests and assembles the output files.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment