summaryrefslogtreecommitdiffhomepage
path: root/mrbgems
diff options
context:
space:
mode:
authorReckordp <[email protected]>2020-04-04 21:56:40 +0700
committerReckordp <[email protected]>2020-04-04 21:56:40 +0700
commitd317ee144b64ce7da51f74356e34ab460d764877 (patch)
tree00e14e0035e4ace1bcc6796d8b34cd0b56d8519b /mrbgems
parent707933aa8e7cbaa7d179c450bcdcfd8adc7c0146 (diff)
downloadmruby-d317ee144b64ce7da51f74356e34ab460d764877.tar.gz
mruby-d317ee144b64ce7da51f74356e34ab460d764877.zip
Correct naming file from Mingw
Diffstat (limited to 'mrbgems')
-rw-r--r--mrbgems/mruby-io/mrbgem.rake4
1 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-io/mrbgem.rake b/mrbgems/mruby-io/mrbgem.rake
index a556ad163..be67628d1 100644
--- a/mrbgems/mruby-io/mrbgem.rake
+++ b/mrbgems/mruby-io/mrbgem.rake
@@ -6,9 +6,9 @@ MRuby::Gem::Specification.new('mruby-io') do |spec|
spec.cc.include_paths << "#{build.root}/src"
if for_windows?
- spec.linker.libraries += ['Ws2_32']
+ spec.linker.libraries << "ws2_32"
#spec.cc.include_paths += ["C:/Windows/system/include"]
- spec.linker.library_paths += ["C:/Windows/system"]
+ spec.linker.library_paths << "C:/Windows/system"
end
spec.add_test_dependency 'mruby-time', core: 'mruby-time'
end