[coreboot] New patch to review for coreboot: a37bdf8 build system: use strip_quotes on cbfs-files

Patrick Georgi (patrick@georgi-clan.de) gerrit at coreboot.org
Fri Nov 16 10:41:03 CET 2012


Patrick Georgi (patrick at georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1866

-gerrit

commit a37bdf8af5f1cead289742ffd432138a09f4700e
Author: Patrick Georgi <patrick.georgi at secunet.com>
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 <patrick.georgi at secunet.com>
---
 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))) \




More information about the coreboot mailing list