diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-04-01 11:45:49 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-04-01 11:45:49 +0900 |
| commit | 96fd52af253f2ebb205da4671fcc334e7e7f2aa1 (patch) | |
| tree | 37bd0f18be8e835ca17971e3f42312968736179d | |
| parent | 65bccbe7b976dd20821368d05de04a8a9a13b0d6 (diff) | |
| download | mruby-96fd52af253f2ebb205da4671fcc334e7e7f2aa1.tar.gz mruby-96fd52af253f2ebb205da4671fcc334e7e7f2aa1.zip | |
revert 79ebdb5 for the time being #1110
| -rw-r--r-- | tasks/mruby_build_commands.rake | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tasks/mruby_build_commands.rake b/tasks/mruby_build_commands.rake index 0effa648b..b647ccf98 100644 --- a/tasks/mruby_build_commands.rake +++ b/tasks/mruby_build_commands.rake @@ -249,11 +249,9 @@ module MRuby def run(out, infiles, funcname) @command ||= @build.mrbcfile - commandline = "#{filename @command} #{@compile_options % {:funcname => funcname}}" - IO.popen(commandline, 'r+') do |io| + IO.popen("#{filename @command} #{@compile_options % {:funcname => funcname}}", 'r+') do |io| [infiles].flatten.each do |f| _pp "MRBC", f.relative_path, nil, :indent => 2 - log "#{commandline} ## #{f}" io.write IO.read(f) end io.close_write |
