From 4287122af7ee6cd045075579fc4003d110eec904 Mon Sep 17 00:00:00 2001 From: gsell Date: Wed, 19 Feb 2025 10:45:10 +0100 Subject: [PATCH] Merge branch '391-build-system-change-order-of-checks-to-build-a-module' into 'master' Resolve "build-system: change order of checks to build a module" Closes #391 See merge request Pmodules/src!421 (cherry picked from commit 3e95734d4e07847de7b7a365cf8039b52dd30c36) 61887f78 build-system: change order of checks to build a module Co-authored-by: gsell --- Pmodules/modbuild.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pmodules/modbuild.in b/Pmodules/modbuild.in index 3fd20ee..458592c 100644 --- a/Pmodules/modbuild.in +++ b/Pmodules/modbuild.in @@ -1335,9 +1335,9 @@ build_modules_yaml_v1(){ debug "don't build this variant: ${config['variant']} != *:${build_variant}:*" return 0 fi - check_system module_config || return 1 check_kernel module_config || return 1 check_target_cpu module_config || return 1 + check_system module_config || return 1 return 0 }