diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-06-13 18:05:43 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-06-13 18:05:43 (EDT) |
commit | e707fac34a139bcf980d55ff4ce2537c3bf5f3fd (patch) | |
tree | 707a3f319de5993f8e51be82ba483990b4917b50 | |
parent | 8686cf27906975b0c78168a3f86b07ee5eadfe68 (diff) |
build: Fix tests.
The build system apparently has a no-op "test" target.
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ build: --disable-python oh-autobuild if [ 'x$(OPK_BUILD_ARCH)' = 'x$(OPK_HOST_ARCH)' ]; then \ - oh-autotest; \ + (cd src && make check); \ fi touch $@ |