diff options
author | Ariadne Conill <ariadne@dereferenced.org> | 2020-03-31 05:11:10 +0000 |
---|---|---|
committer | Ariadne Conill <ariadne@dereferenced.org> | 2020-03-31 05:11:10 +0000 |
commit | 7055639797c158c85c572a99c9f396db4f4b5956 (patch) | |
tree | 206310722ca167cb2a6d4f4cf122e6999f26e70c | |
parent | 54b4129467790cec20eeb5bdeb7fe71ffa83103c (diff) |
main/audit: disable tests on mips64
mips builder does not have audit support at the moment
-rw-r--r-- | main/audit/APKBUILD | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/main/audit/APKBUILD b/main/audit/APKBUILD index d3c97e52f35..37f2ab2ba73 100644 --- a/main/audit/APKBUILD +++ b/main/audit/APKBUILD @@ -15,6 +15,13 @@ source="https://people.redhat.com/sgrubb/audit/audit-$pkgver.tar.gz auditd.initd auditd.confd" +case "$CARCH" in +mips*) + # mips builder does not have audit support enabled + options="$options !check" + ;; +esac + builddir="$srcdir/audit-$pkgver" build() { |