From 1fc2bda92b9994e1b39e505c94987109762bd587 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Thu, 15 Nov 2012 14:51:54 +0100 Subject: 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 Reviewed-on: http://review.coreboot.org/1866 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer --- Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.inc') diff --git a/Makefile.inc b/Makefile.inc index 4e31e83849..4c0a53f94c 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -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))) \ -- cgit v1.2.3