summaryrefslogtreecommitdiff
path: root/win32/mkexports.rb
diff options
context:
space:
mode:
Diffstat (limited to 'win32/mkexports.rb')
-rw-r--r--win32/mkexports.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/win32/mkexports.rb b/win32/mkexports.rb
index 69131da3df..e92aae0422 100644
--- a/win32/mkexports.rb
+++ b/win32/mkexports.rb
@@ -1,5 +1,7 @@
#!./miniruby -s
+$name = $library = $description = nil
+
module RbConfig
autoload :CONFIG, "rbconfig"
end
@@ -130,5 +132,5 @@ end
END {
exports = Exports.extract(ARGV)
- Exports.output {|f| f.puts exports}
+ Exports.output {|f| f.puts(*exports)}
}