From: ian Date: Wed, 13 Feb 2019 00:10:06 +0000 (+0000) Subject: PR go/89193 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=60d22d0d1f7a19877f8f660b6dba11eb6a627fe5;p=thirdparty%2Fgcc.git PR go/89193 * Makefile.am (mostlyclean-local): Avoid getting an error from chmod. Remove check-vet-dir and gocache-test. * Makefile.in: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@268830 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gotools/ChangeLog b/gotools/ChangeLog index 7404c209e501..22ecd9a40838 100644 --- a/gotools/ChangeLog +++ b/gotools/ChangeLog @@ -1,3 +1,10 @@ +2019-02-12 Ian Lance Taylor + + PR go/89193 + * Makefile.am (mostlyclean-local): Avoid getting an error from + chmod. Remove check-vet-dir and gocache-test. + * Makefile.in: Regenerate. + 2019-01-28 Uroš Bizjak * Makefile.in: Really regenerate. diff --git a/gotools/Makefile.am b/gotools/Makefile.am index ad0ad24e2064..2ade1d7f019e 100644 --- a/gotools/Makefile.am +++ b/gotools/Makefile.am @@ -100,8 +100,9 @@ MOSTLYCLEANFILES = \ *.sent mostlyclean-local: - -chmod -R u+w check-go-dir - rm -rf check-go-dir check-runtime-dir cgo-test-dir carchive-test-dir + if test -d check-go-dir; then chmod -R u+w check-go-dir; fi + rm -rf check-go-dir check-runtime-dir cgo-test-dir carchive-test-dir \ + check-vet-dir gocache-test if NATIVE diff --git a/gotools/Makefile.in b/gotools/Makefile.in index 8bea35500bd8..c591b709581f 100644 --- a/gotools/Makefile.in +++ b/gotools/Makefile.in @@ -703,8 +703,8 @@ distclean-generic: maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -@NATIVE_FALSE@uninstall-local: @NATIVE_FALSE@install-exec-local: +@NATIVE_FALSE@uninstall-local: clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-noinstPROGRAMS \ @@ -813,8 +813,9 @@ s-zdefaultcc: Makefile $(STAMP) $@ mostlyclean-local: - -chmod -R u+w check-go-dir - rm -rf check-go-dir check-runtime-dir cgo-test-dir carchive-test-dir + if test -d check-go-dir; then chmod -R u+w check-go-dir; fi + rm -rf check-go-dir check-runtime-dir cgo-test-dir carchive-test-dir \ + check-vet-dir gocache-test @NATIVE_TRUE@go$(EXEEXT): $(go_cmd_go_files) $(LIBGOTOOL) $(LIBGODEP) @NATIVE_TRUE@ $(GOLINK) $(go_cmd_go_files) $(LIBGOTOOL) $(LIBS) $(NET_LIBS)