summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rwxr-xr-xtool/update-deps2
2 files changed, 6 insertions, 1 deletions
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 <akr@fsij.org>
+
+ * tool/update-deps: Use "make -p all golf" to extract deendencies in
+ makefiles.
+
Thu Apr 11 21:02:19 2013 Tanaka Akira <akr@fsij.org>
* 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