From fd0a311f3cc676be2a499d1376518bc5621a638e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beat=20K=C3=BCng?= Date: Thu, 2 Nov 2023 15:39:29 +0100 Subject: [PATCH] Makefile: exclude submodules for 'make validate_module_configs' --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 53b90e3d01..e073e3e100 100644 --- a/Makefile +++ b/Makefile @@ -484,7 +484,9 @@ validate_module_configs: @find "$(SRC_DIR)"/src/modules "$(SRC_DIR)"/src/drivers "$(SRC_DIR)"/src/lib -name *.yaml -type f \ -not -path "$(SRC_DIR)/src/lib/mixer_module/*" \ -not -path "$(SRC_DIR)/src/modules/uxrce_dds_client/dds_topics.yaml" \ + -not -path "$(SRC_DIR)/src/modules/zenoh/zenoh-pico/*" \ -not -path "$(SRC_DIR)/src/lib/events/libevents/*" \ + -not -path "$(SRC_DIR)/src/lib/cdrstream/*" \ -not -path "$(SRC_DIR)/src/lib/crypto/libtommath/*" -print0 | \ xargs -0 "$(SRC_DIR)"/Tools/validate_yaml.py --schema-file "$(SRC_DIR)"/validation/module_schema.yaml