Fix mrbc error for space included path

This commit is contained in:
kyab
2013-07-24 18:37:00 +09:00
parent be419485ba
commit 494880fa10
+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