diff options
author | Patrick Georgi <pgeorgi@google.com> | 2020-05-27 10:53:01 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-05-28 09:47:36 +0000 |
commit | a3402973abcc7bfee513ebf9bb58f3d9a4d18225 (patch) | |
tree | e8cf99d2f5d792e256b1a9b9270e44f550f27344 /tests | |
parent | 5f17458cfbe90171bf6d20d9c36470ebbfb3842f (diff) | |
download | coreboot-a3402973abcc7bfee513ebf9bb58f3d9a4d18225.tar.xz |
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>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41770
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jan Dabros <jsd@semihalf.com>
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.inc b/tests/Makefile.inc index a6689a2d06..f84fa30d52 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 |