build system: use strip_quotes on cbfs-files
If they come from the build system, file names might be guarded in quotes, which confuses make. Drop them here. Change-Id: Ice0d3c4bc2c45a3f121a85e1b9f5f6420c5761d5 Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com> Reviewed-on: http://review.coreboot.org/1866 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
1a2a6eebc5
commit
1fc2bda92b
|
@ -120,7 +120,7 @@ cbfs-files-processor-vsa= \
|
|||
$(call add-special-class,cbfs-files)
|
||||
cbfs-files-handler= \
|
||||
$(eval tmp-cbfs-method:=$(word 2, $(subst :, ,$($(2)-file)))) \
|
||||
$(eval $(2)-file:=$(word 1, $(subst :, ,$($(2)-file)))) \
|
||||
$(eval $(2)-file:=$(call strip_quotes,$(word 1, $(subst :, ,$($(2)-file))))) \
|
||||
$(if $(wildcard $(1)$($(2)-file)), \
|
||||
$(eval tmp-cbfs-file:= $(wildcard $(1)$($(2)-file))), \
|
||||
$(eval tmp-cbfs-file:= $($(2)-file))) \
|
||||
|
|
Loading…
Reference in New Issue