neon: build the test suite to verify neon links

Without building a binary it's impossible to tell if a library will link
correctly, so build the test suite in do_compile().

(From OE-Core rev: 659d0300187accaff393d2b988aef6b58972ed8d)

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ross Burton 2015-06-09 19:57:52 +01:00 committed by Richard Purdie
parent b012fc8b19
commit c929827695
1 changed files with 4 additions and 0 deletions

View File

@ -20,3 +20,7 @@ inherit autotools binconfig-disabled lib_package pkgconfig
EXTRA_OECONF = "--with-ssl=gnutls --with-libxml2 --with-expat --enable-shared"
EXTRA_OECONF += "--without-gssapi"
do_compile_append() {
oe_runmake -C test
}