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 <jacz@semihalf.com> Change-Id: I9889b45f773b9675fae287086d324c180c505a4b Reviewed-on: https://review.coreboot.org/c/coreboot/+/62133 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
parent
dbbb391700
commit
7f663ab3e6
|
@ -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))))
|
||||
|
|
Loading…
Reference in New Issue