aboutsummaryrefslogtreecommitdiffstats
path: root/win32/mkexports.rb
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-10-30 09:23:14 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-10-30 09:23:14 +0000
commit8d321e3fd4b05b092f5cd41ceb583f0534f7b251 (patch)
treef468705a2f8829736a52fa6c5286fa32f2b14e76 /win32/mkexports.rb
parent54d534f04313a0437a613516169cb243b695ccaf (diff)
downloadruby-8d321e3fd4b05b092f5cd41ceb583f0534f7b251.tar.gz
* win32/mkexports.rb: follow the change of rb_io_puts().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1804 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/mkexports.rb')
-rw-r--r--win32/mkexports.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/mkexports.rb b/win32/mkexports.rb
index faf342b2cb..f8205d9dff 100644
--- a/win32/mkexports.rb
+++ b/win32/mkexports.rb
@@ -24,7 +24,7 @@ exports << "Description " + $description.dump if $description
exports << "EXPORTS" << SYM.keys.sort
if $output
- open($output, 'w') {|f| f.puts exports}
+ open($output, 'w') {|f| f.puts exports.join("\n")}
else
- puts exports
+ puts exports.join("\n")
end