Patrick Georgi ([email protected]) just uploaded a new patch set to 
gerrit, which you can find at http://review.coreboot.org/1866

-gerrit

commit a37bdf8af5f1cead289742ffd432138a09f4700e
Author: Patrick Georgi <[email protected]>
Date:   Thu Nov 15 14:51:54 2012 +0100

    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 <[email protected]>
---
 Makefile.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.inc b/Makefile.inc
index 4e31e83..4c0a53f 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))) \

-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to