diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-01-23 23:44:00 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-01-23 23:44:00 -0800 |
| commit | cc967ebfb6977c7ff39d5172719da5cebe2b9667 (patch) | |
| tree | a777c35712a1409d83d07c98058ad1c32b1e048a /tasks | |
| parent | 65623d7d66c2ef4e3136ab90077ece988c451750 (diff) | |
| parent | 843aabc7e4c524b593a7f77a8931699f9214355b (diff) | |
| download | mruby-cc967ebfb6977c7ff39d5172719da5cebe2b9667.tar.gz mruby-cc967ebfb6977c7ff39d5172719da5cebe2b9667.zip | |
Merge pull request #777 from thecodeshop/pp-clean
Remove noisy build message quotes
Diffstat (limited to 'tasks')
| -rw-r--r-- | tasks/mruby_build_commands.rake | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tasks/mruby_build_commands.rake b/tasks/mruby_build_commands.rake index 33dc82742..0bf06cb04 100644 --- a/tasks/mruby_build_commands.rake +++ b/tasks/mruby_build_commands.rake @@ -58,7 +58,7 @@ module MRuby include_path_flags = [include_paths, _include_paths, File.dirname(infile)].flatten.map do |f| option_include_path % filename(f) end - _pp "CC", "#{filename(infile)}", "#{filename(outfile)}" + _pp "CC", infile, outfile _run compile_options, { :flags => (flags + define_flags + include_path_flags + _flags).join(' '), :infile => filename(infile), :outfile => filename(outfile) } end @@ -131,7 +131,7 @@ module MRuby FileUtils.mkdir_p File.dirname(outfile) library_flags = [libraries, _libraries].flatten.map{ |d| option_library % d } library_path_flags = [library_paths, _library_paths].flatten.map{ |f| option_library_path % filename(f) } - _pp "LD", "#{filename(outfile)}" + _pp "LD", outfile _run link_options, { :flags => (flags + library_path_flags + _flags).join(' '), :outfile => filename(outfile) , :objs => filename(objfiles).join(' '), :libs => library_flags.join(' ') } @@ -149,7 +149,7 @@ module MRuby def run(outfile, objfiles) FileUtils.mkdir_p File.dirname(outfile) - _pp "AR", "#{filename(outfile)}" + _pp "AR", outfile _run archive_options, { :outfile => filename(outfile), :objs => filename(objfiles).join(' ') } end end @@ -165,7 +165,7 @@ module MRuby def run(outfile, infile) FileUtils.mkdir_p File.dirname(outfile) - _pp "YACC", "#{filename(infile)}", "#{filename(outfile)}" + _pp "YACC", infile, outfile _run compile_options, { :outfile => filename(outfile) , :infile => filename(infile) } end end @@ -181,7 +181,7 @@ module MRuby def run(outfile, infile) FileUtils.mkdir_p File.dirname(outfile) - _pp "GPERF", "#{filename(infile)}", "#{filename(outfile)}" + _pp "GPERF", infile, outfile _run compile_options, { :outfile => filename(outfile) , :infile => filename(infile) } end end @@ -198,7 +198,7 @@ module MRuby end def run_clone(dir, url, _flags = []) - _pp "GIT", "#{url}", "#{filename(dir)}" + _pp "GIT", url, dir _run clone_options, { :flags => [flags, _flags].flatten.join(' '), :url => url, :dir => filename(dir) } end end |
