diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-08 07:38:53 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-08 07:38:53 +0000 |
| commit | 0e10803f6962a751bf476e08e0d5d139377fcf2a (patch) | |
| tree | ef3334fb6e7e583eaefedb2a62af0bdb5d34d5e1 /ext | |
| parent | ed71c064d5162f269336f3baed43c28aafd76094 (diff) | |
| download | ruby-0e10803f6962a751bf476e08e0d5d139377fcf2a.tar.gz ruby-0e10803f6962a751bf476e08e0d5d139377fcf2a.tar.xz ruby-0e10803f6962a751bf476e08e0d5d139377fcf2a.zip | |
* ext/extmk.rb (extmake): follow Array#to_s.
* lib/mkmf.rb (create_makefile): ditto.
* win32/resource.rb: ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10889 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/extmk.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb index a9fad432b..2e17d0595 100644 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -155,7 +155,7 @@ def extmake(target) ok = yield(ok) if block_given? unless ok open(makefile, "w") do |f| - f.print dummy_makefile(CONFIG["srcdir"]) + f.print *dummy_makefile(CONFIG["srcdir"]) end return true end |
