ruby-changes:38273
From: usa <ko1@a...>
Date: Mon, 20 Apr 2015 16:19:46 +0900 (JST)
Subject: [ruby-changes:38273] usa:r50354 (trunk): * common.mk ($(arch)-fake.rb): fix the path separator up for Windows.
usa 2015-04-20 16:19:34 +0900 (Mon, 20 Apr 2015) New Revision: 50354 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=50354 Log: * common.mk ($(arch)-fake.rb): fix the path separator up for Windows. Modified files: trunk/ChangeLog trunk/common.mk Index: ChangeLog =================================================================== --- ChangeLog (revision 50353) +++ ChangeLog (revision 50354) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Mon Apr 20 16:18:17 2015 NAKAMURA Usaku <usa@r...> + + * common.mk ($(arch)-fake.rb): fix the path separator up for Windows. + Mon Apr 20 15:02:47 2015 NAKAMURA Usaku <usa@r...> * win32/win32.c (rb_w32_wreadlink): fixed a bug that a junction misses Index: common.mk =================================================================== --- common.mk (revision 50353) +++ common.mk (revision 50354) @@ -552,7 +552,7 @@ no-fake: PHONY https://github.com/ruby/ruby/blob/trunk/common.mk#L552 $(arch)-fake.rb: $(RBCONFIG) $(srcdir)/template/fake.rb.in $(srcdir)/tool/expand-config.rb rbconfig.rb @$(BOOTSTRAPRUBY) $(srcdir)/tool/expand-config.rb \ -output=$@ -mode=$(INSTALL_PROG_MODE) -expand -config=rbconfig.rb \ - srcdir="$(srcdir)" BASERUBY="$(BASERUBY)" $(srcdir)/template/fake.rb.in + srcdir="$(srcdir)" BASERUBY="$(BASERUBY:\=/)" $(srcdir)/template/fake.rb.in btest: $(TEST_RUNNABLE)-btest no-btest: PHONY -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/