aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in18
2 files changed, 13 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 9ef033d778..1b7b04e69b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Jan 21 16:37:50 2016 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * Makefile.in (update-rubyspec): fix r53208 like r53451.
+
Wed Jan 20 20:58:25 2016 NAKAMURA Usaku <usa@ruby-lang.org>
* common.mk, Makefile.in: update-config_files is only for Unix
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