summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-07-21 21:07:04 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2023-07-21 21:07:04 -0700
commitdd04def10f22296c9a98b4d796c100b9ad4e2388 (patch)
tree9033abf1cf64f2178d9cb5cb2d0ca3e6a0dd9e76 /tool
parent7cecd15587431e84088c62294bfbba134bfef173 (diff)
Try to fix NoMethodError on update-deps
Diffstat (limited to 'tool')
-rwxr-xr-xtool/update-deps2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/update-deps b/tool/update-deps
index 86e359c0d0..c79a8a61c5 100755
--- a/tool/update-deps
+++ b/tool/update-deps
@@ -480,7 +480,7 @@ def compare_deps(make_deps, cc_deps, out=$stdout)
}
}
- makefiles.keys.sort.each {|makefile|
+ makefiles.keys.compact.sort.each {|makefile|
cc_lines = cc_lines_hash[makefile] || Hash.new(false)
make_lines = make_lines_hash[makefile] || Hash.new(false)
content = begin