Unverified Commit 8a6614d3 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #5135 from shuujii/fix-paths-of-gem-files-to-be-scanned-for-presym

Fix paths of gem files to be scanned for presym
parents 144cf6cd e334c02a
......@@ -99,9 +99,9 @@ MRuby.each_target do |target|
end
if gem.cdump?
cfiles += Dir.glob(relative_from_root+"/{src,core}/*.c")
rbfiles += Dir.glob(relative_from_root+"/mrblib/**/*.rb")
psfiles += Dir.glob(relative_from_root+"/**/presym")
cfiles += Dir.glob(gem.dir+"/{src,core}/*.c")
rbfiles += Dir.glob(gem.dir+"/mrblib/**/*.rb")
psfiles += Dir.glob(gem.dir+"/**/presym")
end
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment