Merge pull request #1405 from kyab/fix_mrbc_path_space

Fix mrbc error for space included path
This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-07-24 07:13:53 -07:00
+1 -1
View File
@@ -259,7 +259,7 @@ module MRuby
infiles.each do |f|
_pp "MRBC", f.relative_path, nil, :indent => 2
end
IO.popen("#{filename @command} #{@compile_options % {:funcname => funcname}} #{infiles.join(' ')}", 'r+') do |io|
IO.popen("#{filename @command} #{@compile_options % {:funcname => funcname}} #{filename(infiles).join(' ')}", 'r+') do |io|
out.puts io.read
end
end