From 89ee8a557e3098da3d5cebc3d825950a43e9f322 Mon Sep 17 00:00:00 2001 From: naruse Date: Thu, 21 Jan 2016 07:40:17 +0000 Subject: * 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 --- ChangeLog | 4 ++++ Makefile.in | 18 +++++++++--------- 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 + + * Makefile.in (update-rubyspec): fix r53208 like r53451. + Wed Jan 20 20:58:25 2016 NAKAMURA Usaku * 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 -- cgit v1.2.3