ruby-changes:28191
From: akr <ko1@a...>
Date: Thu, 11 Apr 2013 23:22:15 +0900 (JST)
Subject: [ruby-changes:28191] akr:r40243 (trunk): * tool/update-deps: Use "make -p all golf" to extract deendencies in
akr 2013-04-11 23:22:04 +0900 (Thu, 11 Apr 2013) New Revision: 40243 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=40243 Log: * tool/update-deps: Use "make -p all golf" to extract deendencies in makefiles. Modified files: trunk/ChangeLog trunk/tool/update-deps Index: ChangeLog =================================================================== --- ChangeLog (revision 40242) +++ ChangeLog (revision 40243) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Thu Apr 11 23:21:17 2013 Tanaka Akira <akr@f...> + + * tool/update-deps: Use "make -p all golf" to extract deendencies in + makefiles. + Thu Apr 11 21:02:19 2013 Tanaka Akira <akr@f...> * common.mk: Dependency updated. Index: tool/update-deps =================================================================== --- tool/update-deps (revision 40242) +++ tool/update-deps (revision 40243) @@ -19,7 +19,7 @@ ENV['LC_ALL'] = 'C' https://github.com/ruby/ruby/blob/trunk/tool/update-deps#L19 def read_make_deps(cwd) dependencies = {} - make_p = `make -p 2> /dev/null` + make_p = `make -p all golf 2> /dev/null` dirstack = [cwd] make_p.scan(%r{Entering directory `(.*)'|Leaving directory `(.*)'|^([/0-9a-zA-Z._-]+):(.*)}) { if $1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/