Martin L Roth has submitted this change. ( https://review.coreboot.org/c/coreboot/+/77418?usp=email )
Change subject: vc/eltan: Only pull in vc/eltan/security Makefile when enabled ......................................................................
vc/eltan: Only pull in vc/eltan/security Makefile when enabled
This change tells the build to only pull vc/eltan/security/Makefile.inc into the overall build when USE_VENDORCODE_ELTAN is enabled in Kconfig.
Signed-off-by: Martin Roth gaumless@gmail.com Change-Id: I1e462d8cc21c44716463c41cab598588cf4a22c3 Reviewed-on: https://review.coreboot.org/c/coreboot/+/77418 Reviewed-by: Elyes Haouas ehaouas@noos.fr Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Frans Hendriks fhendriks@eltan.com Reviewed-by: Felix Singer service+coreboot-gerrit@felixsinger.de --- M src/vendorcode/eltan/Makefile.inc 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Elyes Haouas: Looks good to me, approved Felix Singer: Looks good to me, approved Frans Hendriks: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/src/vendorcode/eltan/Makefile.inc b/src/vendorcode/eltan/Makefile.inc index 4195d95..e6e8eba 100644 --- a/src/vendorcode/eltan/Makefile.inc +++ b/src/vendorcode/eltan/Makefile.inc @@ -1,3 +1,3 @@ # SPDX-License-Identifier: GPL-2.0-only
-subdirs-y += security +subdirs-$(CONFIG_USE_VENDORCODE_ELTAN) += security