From a46ef72fff2345d79ab0f3421c5a8a80e9abb265 Mon Sep 17 00:00:00 2001 From: SalimTerryLi Date: Mon, 24 Apr 2023 21:56:57 +0800 Subject: [PATCH] Makefile: validate_module_configs skips src/lib/events/libevents/* --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index c067ce8a52..a03703ac78 100644 --- a/Makefile +++ b/Makefile @@ -484,6 +484,7 @@ 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/microdds_client/dds_topics.yaml" \ + -not -path "$(SRC_DIR)/src/lib/events/libevents/*" \ -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