From 7f663ab3e6cb749fb19ac7ae47ab97fe36487bda Mon Sep 17 00:00:00 2001 From: Jakub Czapiga Date: Thu, 17 Feb 2022 18:08:09 +0100 Subject: libpayload/vboot/Makefile.inc: Add strip to kconfig-to-binary macro Lack of strip made it required to pass arguments to the kconfig-to-binary macro without spaces. Strip fixed invalid behavior of this macro. Signed-off-by: Jakub Czapiga Change-Id: I9889b45f773b9675fae287086d324c180c505a4b Reviewed-on: https://review.coreboot.org/c/coreboot/+/62133 Tested-by: build bot (Jenkins) Reviewed-by: Julius Werner --- payloads/libpayload/vboot/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'payloads') diff --git a/payloads/libpayload/vboot/Makefile.inc b/payloads/libpayload/vboot/Makefile.inc index 9e9e90bcdd..05668ef29d 100644 --- a/payloads/libpayload/vboot/Makefile.inc +++ b/payloads/libpayload/vboot/Makefile.inc @@ -7,7 +7,7 @@ TLCL_LIB = $(VBOOT_BUILD_DIR)/tlcl.a vboot_fw-objs += $(VBOOT_FW_LIB) tlcl-objs += $(TLCL_LIB) -kconfig-to-binary=$(if $(1),1,0) +kconfig-to-binary=$(if $(strip $(1)),1,0) vboot-fixup-includes = $(patsubst -I%,-I$(top)/%,\ $(patsubst include/%.h,$(top)/include/%.h,\ $(filter-out -I$(obj),$(1)))) -- cgit v1.2.3