diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-05-13 00:20:11 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-05-13 00:20:11 +0200 |
commit | 28067ccfc74e69a3fbacd1edd70dd7229fad8fe0 (patch) | |
tree | 0826ca063a456c1349b054424380511a4b0b2dd6 /community/libtermkey | |
parent | 00279f93a8b4f1fcc44fa69d4f64edd17f44d032 (diff) | |
download | aports-28067ccfc74e69a3fbacd1edd70dd7229fad8fe0.tar.bz2 aports-28067ccfc74e69a3fbacd1edd70dd7229fad8fe0.tar.xz |
community/libtermkey: move "make test" to check function
Diffstat (limited to 'community/libtermkey')
-rw-r--r-- | community/libtermkey/APKBUILD | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/community/libtermkey/APKBUILD b/community/libtermkey/APKBUILD index 30a51fb0dd..0507c3df54 100644 --- a/community/libtermkey/APKBUILD +++ b/community/libtermkey/APKBUILD @@ -18,7 +18,12 @@ builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" - make PREFIX=/usr || return 1 + make PREFIX=/usr +} + +check() { + cd "$builddir" + make test } |