diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-01-26 10:57:07 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-01-26 10:57:07 +0900 |
| commit | 17ecf145111f903d62952fb1b557ea60471d7408 (patch) | |
| tree | ac93ecf059dc48934a41e020f29986ea28e5ba42 /tasks | |
| parent | 165f79c877901db790070b97250633c5c92bcfe7 (diff) | |
| download | mruby-17ecf145111f903d62952fb1b557ea60471d7408.tar.gz mruby-17ecf145111f903d62952fb1b557ea60471d7408.zip | |
Revert "Minimize the changes in #5277"
This reverts commit dc51d89ac22acc60b9bfeed87115863565b74085.
Diffstat (limited to 'tasks')
| -rw-r--r-- | tasks/presym.rake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tasks/presym.rake b/tasks/presym.rake index 6ee7bd9d3..537d42487 100644 --- a/tasks/presym.rake +++ b/tasks/presym.rake @@ -13,8 +13,8 @@ MRuby.each_target do |build| presym = build.presym include_dir = "#{build.build_dir}/include" - build.compilers.each{|c| c.include_paths.unshift include_dir} - build.gems.each{|gem| gem.compilers.each{|c| c.include_paths.unshift include_dir}} + build.compilers.each{|c| c.include_paths << include_dir} + build.gems.each{|gem| gem.compilers.each{|c| c.include_paths << include_dir}} prereqs = {} pps = [] |
