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

ruby-changes:54837

From: nobu <ko1@a...>
Date: Tue, 12 Feb 2019 21:31:06 +0900 (JST)
Subject: [ruby-changes:54837] nobu:r67056 (trunk): Skip erb files, idirect prerequisites

nobu	2019-02-12 21:31:01 +0900 (Tue, 12 Feb 2019)

  New Revision: 67056

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=67056

  Log:
    Skip erb files, idirect prerequisites

  Modified files:
    trunk/tool/update-deps
Index: tool/update-deps
===================================================================
--- tool/update-deps	(revision 67055)
+++ tool/update-deps	(revision 67056)
@@ -337,6 +337,7 @@ def read_single_cc_deps(path_i, cwd) https://github.com/ruby/ruby/blob/trunk/tool/update-deps#L337
     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
   }

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

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