Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/41770 )
Change subject: tests: Move cmocka binary into $(obj) ......................................................................
tests: Move cmocka binary into $(obj)
Put it in $(objutil) so that it's shared between board builds with abuild even if that doesn't matter right now.
Change-Id: I5670d9b661891262ad936980f63fa93b07c27e95 Signed-off-by: Patrick Georgi pgeorgi@google.com --- M tests/Makefile.inc 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/70/41770/1
diff --git a/tests/Makefile.inc b/tests/Makefile.inc index a6689a2..f84fa30 100644 --- a/tests/Makefile.inc +++ b/tests/Makefile.inc @@ -3,7 +3,7 @@ testsrc = $(top)/tests testobj = $(obj)/tests cmockasrc = 3rdparty/cmocka -cmockaobj = $(cmockasrc)/build +cmockaobj = $(objutil)/cmocka
CMOCKA_LIB := $(cmockaobj)/src/libcmocka.so