diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-11-27 08:57:03 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-11-27 08:57:03 +0900 |
| commit | 6059834244a53241ce6591cd6248497b0c495563 (patch) | |
| tree | cf63938a6bdddefaa6f2edc661cd1b79765ecc8d /Rakefile | |
| parent | 13fc5034345ae159f034849cb3f235f4463edd45 (diff) | |
| parent | fdce0e712b4b18575a8ea9fc1d54551b554ebfe4 (diff) | |
| download | mruby-6059834244a53241ce6591cd6248497b0c495563.tar.gz mruby-6059834244a53241ce6591cd6248497b0c495563.zip | |
Merge pull request #5196 from shuujii/fix-build-failure
Fix build failure; ref #5194
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -93,7 +93,9 @@ MRuby.each_target do |target| end desc "preallocated symbols" -task :gensym => MRuby.targets.values.map(&:presym_file) +task :gensym do + MRuby.each_target{|build| Rake::Task[build.presym_file].invoke} +end depfiles += MRuby.targets.map { |n, t| t.libraries |
