From 438fb66969ccecfbfe838c6a4a3a4ad3d7be1db0 Mon Sep 17 00:00:00 2001 From: shirosaki Date: Fri, 3 Oct 2014 14:27:31 +0000 Subject: fake.rb.in: fix make install failure * template/fake.rb.in: fix make install failure due to MSYS path with mingw on MSYS environment. [ruby-core:64965] [Bug #10230] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47774 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- template/fake.rb.in | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'template/fake.rb.in') diff --git a/template/fake.rb.in b/template/fake.rb.in index 8b4e6e5aa3..6f5de5092f 100644 --- a/template/fake.rb.in +++ b/template/fake.rb.in @@ -19,6 +19,10 @@ class Object end builddir = File.dirname(__FILE__) top_srcdir = "@abs_top_srcdir@" +if /mingw/ =~ RUBY_PLATFORM + # convert MSYS path to Windows path + top_srcdir.sub!(/\A\/([a-z])\//, '\\1:/') +end $:.unshift(File.expand_path(builddir)) fake = File.join(top_srcdir, "tool/fake.rb") eval(File.read(fake), nil, fake) -- cgit v1.2.3