summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2012-10-17 13:18:14 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2012-10-17 13:18:14 -0500
commitc34a7094e696a8656364f061bd2628d5997c0b28 (patch)
treee76a8c403b3744ac2c65f12c15f761f4adcfe409 /community
parent66e4c91d4531eef5adcd9dbe4a71e63c9b72cd7e (diff)
Enable posix-acl to carch != mips64el in aide
Diffstat (limited to 'community')
-rw-r--r--community/aide/PKGBUILD7
1 files changed, 6 insertions, 1 deletions
diff --git a/community/aide/PKGBUILD b/community/aide/PKGBUILD
index aec31a7da..7c7e425d7 100644
--- a/community/aide/PKGBUILD
+++ b/community/aide/PKGBUILD
@@ -20,6 +20,11 @@ md5sums=('d0b72535ff68b93a648e4d08b0ed7f07'
build() {
cd $srcdir/$pkgname-$pkgver
+ if [ "$CARCH" != "mips64el" ]; then
+ confflags="--with-posix-acl"
+ else
+ confflags=""
+ fi
./configure \
--prefix=/usr \
--sysconfdir=/etc \
@@ -27,7 +32,7 @@ build() {
--with-prelink \
--with-xattr \
--with-zlib \
- --with-e2fsattrs
+ --with-e2fsattrs ${confflags}
make
}