mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-08-25 17:32:06 +00:00
libspdm: skip unsupported architectures instead of erroring
Change bb.error to bb.parse.SkipRecipe so the recipe is skipped at parse time for unsupported architectures, rather than raising a fatal error that breaks parsing even when the recipe is not in use. Signed-off-by: Kory Maincent <kory.maincent@bootlin.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
This commit is contained in:
@@ -43,7 +43,7 @@ def get_spdm_multiarch(bb, d):
|
||||
if target_arch in multiarch_options :
|
||||
return multiarch_options[target_arch]
|
||||
|
||||
bb.error("unsupported architecture '%s'" % target_arch)
|
||||
raise bb.parse.SkipRecipe("unsupported architecture '%s'" % target_arch)
|
||||
|
||||
EXTRA_OECMAKE += "\
|
||||
-DARCH=${@get_spdm_multiarch(bb, d)} \
|
||||
|
||||
Reference in New Issue
Block a user