This patch tweaks the gotools Makefile to only chmod check-go-dir if
it exists.  This avoids a pointless error message in a fresh build.
Bootstrapped and ran gotools tests on x86_64-pc-linux-gnu.  Committed
to mainline.

Ian

2019-05-27  Ian Lance Taylor  <i...@golang.org>

* Makefile.am (check-go-tool): Only chmod check-go-dir if it
exists.
* Makefile.in: Regenerate.
Index: Makefile.am
===================================================================
--- Makefile.am (revision 271666)
+++ Makefile.am (working copy)
@@ -207,7 +207,7 @@ ECHO_ENV = PATH=`echo $(abs_builddir):$$
 
 # check-go-tool runs `go test cmd/go` in our environment.
 check-go-tool: go$(EXEEXT) $(noinst_PROGRAMS) check-head check-gccgo check-gcc
-       -chmod -R u+w check-go-dir
+       if test -d check-go-dir; then chmod -R u+w check-go-dir; fi
        rm -rf check-go-dir cmd_go-testlog
        $(MKDIR_P) check-go-dir/src/cmd/go
        cp $(cmdsrcdir)/go/*.go check-go-dir/src/cmd/go/

Reply via email to