Nico Huber has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/55764 )
Change subject: cbfstool: Unset ${DEBUG} when making vboot hostlib ......................................................................
cbfstool: Unset ${DEBUG} when making vboot hostlib
Vboot's Makefile is controlled by a ${DEBUG} environment variable. As the name is very generic, it may be set by accident without any intention to change the build. Having it set would break reproduci- bility at least but it also turns out that the hostlib build would fail due to calls to vb2api_fail() which is not built in.
Change-Id: I2a9eb9a645c70451a320c455b8f24bfed197117c Signed-off-by: Nico Huber nico.huber@secunet.com --- M util/cbfstool/Makefile.inc 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/64/55764/1
diff --git a/util/cbfstool/Makefile.inc b/util/cbfstool/Makefile.inc index 47b89e5..94dacf4 100644 --- a/util/cbfstool/Makefile.inc +++ b/util/cbfstool/Makefile.inc @@ -135,6 +135,7 @@ CC="$(HOSTCC)" \ PKG_CONFIG="true" \ V=$(V) \ + DEBUG= \ hostlib
$(objutil)/cbfstool/%.o: $(objutil)/cbfstool/%.c