diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-02-10 15:47:30 -0600 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2018-02-16 16:58:57 +0000 |
commit | 8dd6a133cc1c35bb9cdfe37e188d2da246ea0d50 (patch) | |
tree | d21cb47dd2bdf2eaafda6b1c3846138c4e7d2206 /main | |
parent | b44c62d5c92acee7f963a3c3a0c77abf42e8dd92 (diff) | |
download | aports-8dd6a133cc1c35bb9cdfe37e188d2da246ea0d50.tar.bz2 aports-8dd6a133cc1c35bb9cdfe37e188d2da246ea0d50.tar.xz |
main/wpa_supplicant: move test to check phase
Diffstat (limited to 'main')
-rw-r--r-- | main/wpa_supplicant/APKBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/main/wpa_supplicant/APKBUILD b/main/wpa_supplicant/APKBUILD index f4f2790b3d..99d87629f3 100644 --- a/main/wpa_supplicant/APKBUILD +++ b/main/wpa_supplicant/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=wpa_supplicant pkgver=2.6 -pkgrel=8 +pkgrel=9 pkgdesc="A utility providing key negotiation for WPA wireless networks" url="https://w1.fi/wpa_supplicant/" arch="all" @@ -51,6 +51,10 @@ prepare() { build() { cd "$builddir"/wpa_supplicant make LIBDIR=/lib BINDIR=/sbin +} + +check() { + cd "$builddir"/wpa_supplicant make eapol_test } |