Maulik V Vaghela has uploaded this change for review. ( https://review.coreboot.org/27986
Change subject: vboot/Makefie: fix compilation error ......................................................................
vboot/Makefie: fix compilation error
when we compile coreboot with latest source getting compilation warning as below: src/security/vboot/Makefile.inc:230: *** Invalid file operation: < build/fwid.version. Stop.
Fixing error by fixing parentheses.
BUG=none BRANCH=none TEST=Check if compilation goes through without any error.
Change-Id: I366e400b8a6db000ab9f6b5c0b6f957b247ef2fb Signed-off-by: Maulik V Vaghela maulik.v.vaghela@intel.com --- M src/security/vboot/Makefile.inc 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/86/27986/1
diff --git a/src/security/vboot/Makefile.inc b/src/security/vboot/Makefile.inc index 7d40428..e86586a 100644 --- a/src/security/vboot/Makefile.inc +++ b/src/security/vboot/Makefile.inc @@ -229,7 +229,7 @@ $(obj)/fwid.region: $(obj)/fwid.version printf "%s%s\0" \ "$(CONFIG_VBOOT_FWID_MODEL)" \ - "$(file < $(obj)/fwid.version)" > $@ + "$(file) < $(obj)/fwid.version" > $@
build_complete:: $(obj)/gbb.region $(obj)/fwid.region @printf " WRITE GBB\n"