From f09fc1b0344e65aeb9c11aaeb23c99954265fe4d Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 18 Nov 2019 23:14:13 +0900 Subject: [PATCH] Dependents on probes.h need the dummy header too --- tool/update-deps | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tool/update-deps b/tool/update-deps index cfcb15c776..359fea102e 100755 --- a/tool/update-deps +++ b/tool/update-deps @@ -364,6 +364,9 @@ def read_single_cc_deps(path_i, cwd) next if !dep.to_s.start_with?(cwd.to_s) # omit system headers. deps << dep } + if deps.include?(cwd + "probes.h") + deps << (cwd + "probes.dmyh") + end deps end