From d6543f80567fa7ddecdc26de275f63cc51b494e7 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 20 Dec 2015 00:48:49 +0000 Subject: Makefile.in: V=1 at update * Makefile.in (update-mspec, update-rubyspec, update-coverage): show commands to run if V=1. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53208 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- Makefile.in | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index 4ae4596f13..12fac909eb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -468,22 +468,26 @@ after-update:: update-config_files common-srcs update-mspec: @$(CHDIR) $(srcdir); \ if [ -d spec/mspec ]; then \ - cd spec/mspec; \ echo updating mspec ...; \ + $(Q:@=:) set -x; \ + cd spec/mspec && \ exec git pull; \ else \ echo retrieving mspec ...; \ + $(Q:@=:) set -x; \ exec git clone $(MSPEC_GIT_URL) spec/mspec; \ fi update-rubyspec: update-mspec @$(CHDIR) $(srcdir); \ if [ -d spec/rubyspec ]; then \ - cd spec/rubyspec; \ echo updating rubyspec ...; \ + $(Q:@=:) set -x; \ + cd spec/rubyspec && \ exec git pull; \ else \ echo retrieving rubyspec ...; \ + $(Q:@=:) set -x; \ exec git clone $(RUBYSPEC_GIT_URL) spec/rubyspec; \ fi @@ -493,22 +497,25 @@ test-rubyspec-precheck: update-doclie: @$(CHDIR) $(srcdir); \ if [ -d coverage/doclie ]; then \ - cd coverage/doclie; \ echo updating doclie ...; \ - exec git fetch; \ - exec git checkout $(DOCLIE_GIT_REF); \ + $(Q:@=:) set -x; \ + cd coverage/doclie && \ + exec git fetch && \ + exec git checkout $(DOCLIE_GIT_REF); \ else \ echo retrieving doclie ...; \ + $(Q:@=:) set -x; \ exec git clone --branch $(DOCLIE_GIT_REF) $(DOCLIE_GIT_URL) coverage/doclie; \ fi update-simplecov-html: @$(CHDIR) $(srcdir); \ if [ -d coverage/simplecov-html ]; then \ - cd coverage/simplecov-html; \ echo updating simplecov-html ...; \ - exec git fetch; \ - exec git checkout $(SIMPLECOV_HTML_GIT_REF); \ + $(Q:@=:) set -x; \ + cd coverage/simplecov-html && \ + exec git fetch && \ + exec git checkout $(SIMPLECOV_HTML_GIT_REF); \ else \ echo retrieving simplecov-html ...; \ exec git clone --branch $(SIMPLECOV_HTML_GIT_REF) $(SIMPLECOV_HTML_GIT_URL) coverage/simplecov-html; \ @@ -517,12 +524,14 @@ update-simplecov-html: update-simplecov: @$(CHDIR) $(srcdir); \ if [ -d coverage/simplecov ]; then \ - cd coverage/simplecov; \ echo updating simplecov ...; \ - exec git fetch; \ - exec git checkout $(SIMPLECOV_GIT_REF); \ + $(Q:@=:) set -x; \ + cd coverage/simplecov && \ + exec git fetch && \ + exec git checkout $(SIMPLECOV_GIT_REF); \ else \ echo retrieving simplecov ...; \ + $(Q:@=:) set -x; \ exec git clone --branch $(SIMPLECOV_GIT_REF) $(SIMPLECOV_GIT_URL) coverage/simplecov; \ fi -- cgit v1.2.3