From 00d4da468c8c9ea3057dbf3d9f825c3915457f67 Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 20 Apr 2015 11:24:43 +0000 Subject: * common.mk ($(arch)-fake.rb): revert r50354 because bsdmake seems not to handle such substitution. * tool/expand-config.rb: convert path separators here. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50357 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ tool/expand-config.rb | 1 + 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 0121237541..5036863204 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Mon Apr 20 20:23:04 2015 NAKAMURA Usaku + + * 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 * too/fake.rb: don't fake libdir. use libdirname instead. diff --git a/tool/expand-config.rb b/tool/expand-config.rb index c132d4afaa..0b6fa54b30 100755 --- a/tool/expand-config.rb +++ b/tool/expand-config.rb @@ -9,6 +9,7 @@ config["RUBY_RELEASE_DATE"] ||= while /\A(\w+)=(.*)/ =~ ARGV[0] config[$1] = $2 + config[$1].tr(File::ALT_SEPARATOR, File::SEPARATOR) if File::ALT_SEPARATOR ARGV.shift end -- cgit v1.2.3