summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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