diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-01-11 05:51:57 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-01-11 05:51:57 -0800 |
| commit | 453946971319b07952ec77ca5f4a27f0411fae17 (patch) | |
| tree | 4e25ded18b7a743a73a1b0b57f8ae630124f1a03 | |
| parent | 1746a83cb7619bd0342b7e00dbed7bb496e69717 (diff) | |
| parent | b0beaadcb0513eb187bf7a9d695b259b867d055c (diff) | |
| download | mruby-453946971319b07952ec77ca5f4a27f0411fae17.tar.gz mruby-453946971319b07952ec77ca5f4a27f0411fae17.zip | |
Merge pull request #726 from mattn/fix_build_tasks
Fix build tasks
| -rw-r--r-- | Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -37,9 +37,9 @@ depfiles = MRuby.targets['host'].bins.map do |bin| install_path end -depfiles += MRuby.targets.reject {|n,t| n == 'host' }.map do |n, t| +depfiles += MRuby.targets.reject {|n,t| n == 'host' }.map { |n, t| ["#{t.build_dir}/lib/libmruby.a"] + t.bins.map { |bin| exefile("#{t.build_dir}/bin/#{bin}") } -end +}.flatten desc "build all targets, install (locally) in-repo" task :all => depfiles |
