ruby-changes:41533
From: naruse <ko1@a...>
Date: Thu, 21 Jan 2016 16:39:41 +0900 (JST)
Subject: [ruby-changes:41533] naruse:r53607 (trunk): * Makefile.in (update-rubyspec): fix r53208 like r53451.
naruse 2016-01-21 16:40:17 +0900 (Thu, 21 Jan 2016) New Revision: 53607 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=53607 Log: * Makefile.in (update-rubyspec): fix r53208 like r53451. Modified files: trunk/ChangeLog trunk/Makefile.in Index: ChangeLog =================================================================== --- ChangeLog (revision 53606) +++ ChangeLog (revision 53607) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Thu Jan 21 16:37:50 2016 NARUSE, Yui <naruse@r...> + + * Makefile.in (update-rubyspec): fix r53208 like r53451. + Wed Jan 20 20:58:25 2016 NAKAMURA Usaku <usa@r...> * common.mk, Makefile.in: update-config_files is only for Unix Index: Makefile.in =================================================================== --- Makefile.in (revision 53606) +++ Makefile.in (revision 53607) @@ -478,12 +478,12 @@ update-mspec: https://github.com/ruby/ruby/blob/trunk/Makefile.in#L478 @$(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 https://github.com/ruby/ruby/blob/trunk/Makefile.in#L491 @$(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: https://github.com/ruby/ruby/blob/trunk/Makefile.in#L507 @$(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: https://github.com/ruby/ruby/blob/trunk/Makefile.in#L521 @$(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: https://github.com/ruby/ruby/blob/trunk/Makefile.in#L534 @$(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 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/