aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-20 00:48:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-20 00:48:49 +0000
commit4de03a0188351e70ba719c5cd7eedcbc6b96e15f (patch)
tree0b090c913989c89339bfdcef5644fd9c42c237f0 /Makefile.in
parentc887f33b13b3ece5a72d1c50b4d26d8548138751 (diff)
downloadruby-4de03a0188351e70ba719c5cd7eedcbc6b96e15f.tar.gz
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
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in31
1 files changed, 20 insertions, 11 deletions
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