[前][次][番号順一覧][スレッド一覧]

ruby-changes:72533

From: Nobuyoshi <ko1@a...>
Date: Wed, 13 Jul 2022 22:15:12 +0900 (JST)
Subject: [ruby-changes:72533] d5c5fcb80a (master): Bundled gem extensions are out of scope of update-deps

https://git.ruby-lang.org/ruby.git/commit/?id=d5c5fcb80a

From d5c5fcb80a432e2078139c460230dc7952216c35 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Wed, 11 May 2022 19:26:43 +0900
Subject: Bundled gem extensions are out of scope of update-deps

---
 tool/update-deps | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tool/update-deps b/tool/update-deps
index 2348b36e33..27230c50e4 100755
--- a/tool/update-deps
+++ b/tool/update-deps
@@ -301,6 +301,7 @@ def read_make_deps(cwd) https://github.com/ruby/ruby/blob/trunk/tool/update-deps#L301
       deps = deps.scan(%r{[/0-9a-zA-Z._-]+})
       deps.delete_if {|dep| /\.time\z/ =~ dep} # skip timestamp
       next if /\.o\z/ !~ target.to_s
+      next if /\.bundle\// =~ target.to_s
       next if /\A\./ =~ target.to_s # skip rules such as ".c.o"
       #p [curdir, target, deps]
       dir = curdir || dirstack.last
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]