Stefan Reinauer ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1700
-gerrit commit 6538acd0814711a75254cf249dcf06a09c5e9daf Author: Stefan Reinauer <[email protected]> Date: Thu Aug 9 11:09:44 2012 -0700 Strip quotes from $(objcbfs) Otherwise object paths will look like build/cbfs/"fallback"/... Change-Id: I3e60f90f7490e71b0da075d3ea8fc847abc07938 Signed-off-by: Stefan Reinauer <[email protected]> --- Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc b/Makefile.inc index 7d32a96..e499bac 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -30,7 +30,7 @@ export MAINBOARDDIR ## Final build results, which CBFSTOOL uses to create the final ## rom image file, are placed under $(objcbfs). ## These typically have suffixes .debug .elf .bin and .map -export objcbfs := $(obj)/cbfs/$(CONFIG_CBFS_PREFIX) +export objcbfs := $(obj)/cbfs/$(call strip_quotes,$(CONFIG_CBFS_PREFIX)) ## Based on the active configuration, Makefile conditionally collects ## the required assembly includes and saves them in a file. -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

