Rakefile: ingnore .inc files

This commit is contained in:
King Kévin 2021-03-10 14:14:19 +01:00
parent 9a7c51f80e
commit 6bed3ab0fb
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ def dependencies(source, done = [])
d_file.each do |d|
SRC_DIRS.each do |dir|
if File.dirname(d) == dir then
d_list << d
d_list << d unless d.end_with?(".inc")
end
end
end