ruby-changes:41942
From: nobu <ko1@a...>
Date: Mon, 7 Mar 2016 15:24:51 +0900 (JST)
Subject: [ruby-changes:41942] nobu:r54016 (trunk): update-rubyspec: show latest commit
nobu 2016-03-07 15:24:46 +0900 (Mon, 07 Mar 2016) New Revision: 54016 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=54016 Log: update-rubyspec: show latest commit * Makefile.in, win32/Makefile.sub (update-mspec, update-rubyspec): ensure the latest commits. Modified files: trunk/Makefile.in trunk/win32/Makefile.sub Index: win32/Makefile.sub =================================================================== --- win32/Makefile.sub (revision 54015) +++ win32/Makefile.sub (revision 54016) @@ -468,6 +468,7 @@ update-mspec: https://github.com/ruby/ruby/blob/trunk/win32/Makefile.sub#L468 @echo retrieving mspec ... @cd $(srcdir:/=\) && git clone $(MSPEC_GIT_URL) spec/mspec !endif + @cd $(srcdir:/=\)\spec\mspec && git --no-pager log -1 --oneline update-rubyspec: update-mspec !if exist($(srcdir)/spec/rubyspec) @@ -477,6 +478,7 @@ update-rubyspec: update-mspec https://github.com/ruby/ruby/blob/trunk/win32/Makefile.sub#L478 @echo retrieving rubyspec ... @cd $(srcdir:/=\) && git clone $(RUBYSPEC_GIT_URL) spec/rubyspec !endif + @cd $(srcdir:/=\)\spec\rubyspec && git --no-pager log -1 --oneline test-rubyspec-precheck: !if !exist($(srcdir)/spec/rubyspec/.) Index: Makefile.in =================================================================== --- Makefile.in (revision 54015) +++ Makefile.in (revision 54016) @@ -486,6 +486,7 @@ update-mspec: https://github.com/ruby/ruby/blob/trunk/Makefile.in#L486 $(Q1:0=:) set -x; \ exec git clone $(MSPEC_GIT_URL) spec/mspec; \ fi + $(Q)cd $(srcdir)/spec/mspec && exec git --no-pager log -1 --oneline update-rubyspec: update-mspec @$(CHDIR) $(srcdir); \ @@ -499,6 +500,7 @@ update-rubyspec: update-mspec https://github.com/ruby/ruby/blob/trunk/Makefile.in#L500 $(Q1:0=:) set -x; \ exec git clone $(RUBYSPEC_GIT_URL) spec/rubyspec; \ fi + $(Q)cd $(srcdir)/spec/rubyspec && exec git --no-pager log -1 --oneline test-rubyspec-precheck: @if [ ! -d $(srcdir)/spec/rubyspec ]; then echo No rubyspec here. make update-rubyspec first.; exit 1; fi -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/