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 3e95734d4e)

61887f78 build-system: change order of checks to build a module

Co-authored-by: gsell <achim.gsell@psi.ch>
This commit is contained in:
2025-02-19 10:45:10 +01:00
parent 7fcc5a2149
commit 4287122af7
+1 -1
View File
@@ -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
}