aboutsummaryrefslogtreecommitdiffstats
path: root/test/fiddle
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-21 06:36:05 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-21 06:36:05 +0000
commitf0e975c0dddea6e8ff99b8b68983abb784538408 (patch)
tree62862948da8f13120f4cf702943187ae944879b5 /test/fiddle
parentfe86b0f4e7cf9c6f894df3861381f43cbebbe3e2 (diff)
downloadruby-f0e975c0dddea6e8ff99b8b68983abb784538408.tar.gz
fix r52690
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52696 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/fiddle')
-rw-r--r--test/fiddle/helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fiddle/helper.rb b/test/fiddle/helper.rb
index e98eecc198..0952cc2438 100644
--- a/test/fiddle/helper.rb
+++ b/test/fiddle/helper.rb
@@ -26,7 +26,7 @@ when /linux/
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"