main/userspace-rcu: move check

This commit is contained in:
Fabian Affolter 2017-06-14 16:11:01 +00:00 committed by Natanael Copa
parent 96a71f71b6
commit a9ecf53f98

View File

@ -14,7 +14,6 @@ makedepends="$depends_dev bash perl perl-utils"
install=""
subpackages="$pkgname-dev $pkgname-doc"
source="http://lttng.org/files/urcu/$pkgname-$pkgver.tar.bz2"
builddir="$srcdir"/$pkgname-$pkgver
build() {
@ -29,6 +28,10 @@ build() {
--localstatedir=/var \
|| return 1
make || return 1
}
check() {
cd "$builddir"
make check || return 1
}