diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-06-23 22:06:30 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-06-24 21:25:09 (EDT) |
commit | 60d43ef74993dcf7d6eb038a0d834aed7e1900c1 (patch) | |
tree | 80d2589d88a74d709edab0abfee7e5307b593d26 | |
parent | 015be448df179ecba4aaf46c306d514c8a3190cd (diff) |
build: Remove "--without-python" and run tests.
configure throws errors if the Python version is "no", so just let it
detect that Python isn't installed.
Also, the tests currently return several "missing test plan" errors.
-rwxr-xr-x | build | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -13,6 +13,9 @@ build: --disable-fam \ --disable-xattr \ --disable-libelf \ - --without-python \ --with-pcre=system oh-autobuild + if [ 'x$(OPK_BUILD_ARCH)' = 'x$(OPK_HOST_ARCH)' ]; then \ + oh-autobuild -T check; \ + fi + touch $@ |