diff options
author | Patrick Georgi <patrick.georgi@secunet.com> | 2012-11-15 14:51:54 +0100 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-11-19 19:10:07 +0100 |
commit | 1fc2bda92b9994e1b39e505c94987109762bd587 (patch) | |
tree | ccf159bce7cc3072b52835a4ba7c68329ad5a584 /Makefile.inc | |
parent | 1a2a6eebc5668df21f054b2dae14167bda400617 (diff) | |
download | coreboot-1fc2bda92b9994e1b39e505c94987109762bd587.tar.gz coreboot-1fc2bda92b9994e1b39e505c94987109762bd587.tar.bz2 coreboot-1fc2bda92b9994e1b39e505c94987109762bd587.zip |
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>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc b/Makefile.inc index 4e31e8384956..4c0a53f94c9c 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))) \ |