From 639356eacd78c7e528057310584202aba42def39 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 11 Apr 2013 14:22:04 +0000 Subject: * tool/update-deps: Use "make -p all golf" to extract deendencies in makefiles. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40243 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ tool/update-deps | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index cdd9ef795e..a0641b5c61 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Apr 11 23:21:17 2013 Tanaka Akira + + * tool/update-deps: Use "make -p all golf" to extract deendencies in + makefiles. + Thu Apr 11 21:02:19 2013 Tanaka Akira * common.mk: Dependency updated. diff --git a/tool/update-deps b/tool/update-deps index 82b4c8dd20..3b89864e17 100755 --- a/tool/update-deps +++ b/tool/update-deps @@ -19,7 +19,7 @@ ENV['LC_ALL'] = 'C' 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 -- cgit v1.2.3