From dec246af1fe9bcf37c8cd2201b5c37ccd1ff7c12 Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Fri, 5 Aug 2022 11:07:48 +0800 Subject: [PATCH] idf.py hints: fix header not found regex to also match headerpaths with path seperator --- tools/idf_py_actions/hints.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/idf_py_actions/hints.yml b/tools/idf_py_actions/hints.yml index 4829dbded6..729b6c1a97 100644 --- a/tools/idf_py_actions/hints.yml +++ b/tools/idf_py_actions/hints.yml @@ -13,7 +13,7 @@ match_to_output: True - - re: "fatal error: \\w+\\.h: No such file or directory" + re: "fatal error: [\\w/]+\\.h: No such file or directory" hint: "Please check if you've specified all component dependencies with 'idf_component_register(REQUIRES ...)'. If the component is not present then it should be added by the IDF Component Manager. For more information run 'idf.py docs -sp api-guides/build-system.html'." -