ruby-changes:38276
From: usa <ko1@a...>
Date: Mon, 20 Apr 2015 20:24:51 +0900 (JST)
Subject: [ruby-changes:38276] usa:r50357 (trunk): * common.mk ($(arch)-fake.rb): revert r50354 because bsdmake seems not
usa 2015-04-20 20:24:43 +0900 (Mon, 20 Apr 2015) New Revision: 50357 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=50357 Log: * common.mk ($(arch)-fake.rb): revert r50354 because bsdmake seems not to handle such substitution. * tool/expand-config.rb: convert path separators here. Modified files: trunk/ChangeLog trunk/tool/expand-config.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 50356) +++ ChangeLog (revision 50357) @@ -1,3 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Mon Apr 20 20:23:04 2015 NAKAMURA Usaku <usa@r...> + + * common.mk ($(arch)-fake.rb): revert r50354 because bsdmake seems not + to handle such substitution. + + * tool/expand-config.rb: convert path separators here. + Mon Apr 20 16:52:20 2015 NAKAMURA Usaku <usa@r...> * too/fake.rb: don't fake libdir. use libdirname instead. Index: tool/expand-config.rb =================================================================== --- tool/expand-config.rb (revision 50356) +++ tool/expand-config.rb (revision 50357) @@ -9,6 +9,7 @@ config["RUBY_RELEASE_DATE"] ||= https://github.com/ruby/ruby/blob/trunk/tool/expand-config.rb#L9 while /\A(\w+)=(.*)/ =~ ARGV[0] config[$1] = $2 + config[$1].tr(File::ALT_SEPARATOR, File::SEPARATOR) if File::ALT_SEPARATOR ARGV.shift end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/