diff options
Diffstat (limited to 'tool/update-deps')
| -rwxr-xr-x | tool/update-deps | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tool/update-deps b/tool/update-deps index c927d2483e..0b73228b88 100755 --- a/tool/update-deps +++ b/tool/update-deps @@ -326,6 +326,9 @@ def read_make_deps(cwd) deps.delete_if {|dep| /\.time\z/ =~ dep} # skip timestamp next if /\.o\z/ !~ target.to_s next if /libyjit.o\z/ =~ target.to_s # skip YJIT Rust object (no corresponding C source) + next if /libzjit.o\z/ =~ target.to_s # skip ZJIT Rust object (no corresponding C source) + next if /target\/release\/libruby.o\z/ =~ target.to_s # skip YJIT+ZJIT Rust object (no corresponding C source) + next if /\.bundle\// =~ curdir.to_s next if /\.bundle\// =~ target.to_s next if /\A\./ =~ target.to_s # skip rules such as ".c.o" #p [curdir, target, deps] |
