ruby-changes:40617
From: naruse <ko1@a...>
Date: Sat, 21 Nov 2015 15:36:14 +0900 (JST)
Subject: [ruby-changes:40617] naruse:r52696 (trunk): fix r52690
naruse 2015-11-21 15:36:05 +0900 (Sat, 21 Nov 2015) New Revision: 52696 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=52696 Log: fix r52690 Modified files: trunk/test/fiddle/helper.rb Index: test/fiddle/helper.rb =================================================================== --- test/fiddle/helper.rb (revision 52695) +++ test/fiddle/helper.rb (revision 52696) @@ -26,7 +26,7 @@ when /linux/ https://github.com/ruby/ruby/blob/trunk/test/fiddle/helper.rb#L26 libm_so = File.join(libdir, "libm.so.6") when /mingw/, /mswin/ require "rbconfig" - crtname = RbConfig::CONFIG["RUBY_SO_NAME"][/^msvc\w+/] || 'ucrtbase' + crtname = RbConfig::CONFIG["RUBY_SO_NAME"][/msvc\w+/] || 'ucrtbase' libc_so = libm_so = "#{crtname}.dll" when /darwin/ libc_so = "/usr/lib/libc.dylib" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/