diff options
author | Maximilian Brune <maximilian.brune@9elements.com> | 2022-12-26 06:37:21 +0100 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2022-12-28 05:39:32 +0000 |
commit | 5cbf45e1e8d041000b257ebb89b69f0f6de5922d (patch) | |
tree | b8650ab5f461b9138ce41263735a2098dd740969 /src/security | |
parent | 872079656b9b47795e778bf86a074b7ed185327a (diff) |
src/security/vboot: Fix wrong CONFIG name
Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com>
Change-Id: I2af3bc9bf9eaf258b9180da5fc5494b21764f379
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71518
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/security')
-rw-r--r-- | src/security/vboot/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/security/vboot/Makefile.inc b/src/security/vboot/Makefile.inc index e4771dd415..2f8cb8215e 100644 --- a/src/security/vboot/Makefile.inc +++ b/src/security/vboot/Makefile.inc @@ -34,7 +34,7 @@ $$(VBOOT_LIB_$(1)): $(obj)/config.h BUILD=$$(abspath $$(dir $$(VBOOT_LIB_$(1)))) \ V=$(V) \ fwlib \ - $(if $(CONFIG_INCLUDE_VBOOT_SBOM),$$(abspath $$(dir $$(VBOOT_LIB_$(1))))/vboot_host.pc) + $(if $(CONFIG_SBOM_VBOOT),$$(abspath $$(dir $$(VBOOT_LIB_$(1))))/vboot_host.pc) $(1)-srcs += $$(VBOOT_LIB_$(1)) |