Skip erb files, idirect prerequisites

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67056 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2019-02-12 12:31:01 +00:00
Родитель 29c9f4a590
Коммит da1f593aca
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -337,6 +337,7 @@ def read_single_cc_deps(path_i, cwd)
next if /\A\# \d+ "(.*)"/ !~ line
dep = $1
next if %r{\A<.*>\z} =~ dep # omit <command-line>, etc.
next if /\.erb\z/ =~ dep
compiler_wd ||= dep
files[dep] = true
}