aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-21 07:40:17 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-21 07:40:17 +0000
commit340e7b8e1b091b765289f2b26f75a8499d666633 (patch)
tree7a18680bc9014085c94cc00540f1df29b2aa2b0f /Makefile.in
parent8bee5f5400cd9d1bd924a6ccc9acbb3e2afbe807 (diff)
downloadruby-340e7b8e1b091b765289f2b26f75a8499d666633.tar.gz
* Makefile.in (update-rubyspec): fix r53208 like r53451.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53607 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in18
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile.in b/Makefile.in
index a2a48f7d4a..17164cb25b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -478,12 +478,12 @@ update-mspec:
@$(CHDIR) $(srcdir); \
if [ -d spec/mspec ]; then \
echo updating mspec ...; \
- $(Q:@=:) set -x; \
+ $(Q1:0=:) set -x; \
cd spec/mspec && \
exec git pull; \
else \
echo retrieving mspec ...; \
- $(Q:@=:) set -x; \
+ $(Q1:0=:) set -x; \
exec git clone $(MSPEC_GIT_URL) spec/mspec; \
fi
@@ -491,12 +491,12 @@ update-rubyspec: update-mspec
@$(CHDIR) $(srcdir); \
if [ -d spec/rubyspec ]; then \
echo updating rubyspec ...; \
- $(Q:@=:) set -x; \
+ $(Q1:0=:) set -x; \
cd spec/rubyspec && \
exec git pull; \
else \
echo retrieving rubyspec ...; \
- $(Q:@=:) set -x; \
+ $(Q1:0=:) set -x; \
exec git clone $(RUBYSPEC_GIT_URL) spec/rubyspec; \
fi
@@ -507,13 +507,13 @@ update-doclie:
@$(CHDIR) $(srcdir); \
if [ -d coverage/doclie ]; then \
echo updating doclie ...; \
- $(Q:@=:) set -x; \
+ $(Q1:0=:) set -x; \
cd coverage/doclie && \
git fetch && \
exec git checkout $(DOCLIE_GIT_REF); \
else \
echo retrieving doclie ...; \
- $(Q:@=:) set -x; \
+ $(Q1:0=:) set -x; \
exec git clone --branch $(DOCLIE_GIT_REF) $(DOCLIE_GIT_URL) coverage/doclie; \
fi
@@ -521,7 +521,7 @@ update-simplecov-html:
@$(CHDIR) $(srcdir); \
if [ -d coverage/simplecov-html ]; then \
echo updating simplecov-html ...; \
- $(Q:@=:) set -x; \
+ $(Q1:0=:) set -x; \
cd coverage/simplecov-html && \
git fetch && \
exec git checkout $(SIMPLECOV_HTML_GIT_REF); \
@@ -534,13 +534,13 @@ update-simplecov:
@$(CHDIR) $(srcdir); \
if [ -d coverage/simplecov ]; then \
echo updating simplecov ...; \
- $(Q:@=:) set -x; \
+ $(Q1:0=:) set -x; \
cd coverage/simplecov && \
git fetch && \
exec git checkout $(SIMPLECOV_GIT_REF); \
else \
echo retrieving simplecov ...; \
- $(Q:@=:) set -x; \
+ $(Q1:0=:) set -x; \
exec git clone --branch $(SIMPLECOV_GIT_REF) $(SIMPLECOV_GIT_URL) coverage/simplecov; \
fi