From 7333a7cd9505fefbf07022dea542b9b2d907bb43 Mon Sep 17 00:00:00 2001 From: Lasse Rosenow Date: Thu, 11 Dec 2025 10:06:12 +0100 Subject: [PATCH] dist/tools/buildsystem_sanity_check: ignore .mdx files for test --- dist/tools/buildsystem_sanity_check/check.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/dist/tools/buildsystem_sanity_check/check.sh b/dist/tools/buildsystem_sanity_check/check.sh index de90c179b9..b9c2e827da 100755 --- a/dist/tools/buildsystem_sanity_check/check.sh +++ b/dist/tools/buildsystem_sanity_check/check.sh @@ -214,6 +214,7 @@ check_cpu_cpu_model_defined_in_makefile_features() { patterns+=(-e '^ *\(export\)\? *CPU \??\?=') patterns+=(-e '^ *\(export\)\? *CPU_MODEL \??\?=') pathspec+=(':!**.md') + pathspec+=(':!**.mdx') pathspec+=(':!boards/**/Makefile.features') pathspec+=(':!cpu/**/Makefile.features')