diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2012-10-17 13:18:14 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2012-10-17 13:18:14 -0500 |
commit | c34a7094e696a8656364f061bd2628d5997c0b28 (patch) | |
tree | e76a8c403b3744ac2c65f12c15f761f4adcfe409 /community | |
parent | 66e4c91d4531eef5adcd9dbe4a71e63c9b72cd7e (diff) |
Enable posix-acl to carch != mips64el in aide
Diffstat (limited to 'community')
-rw-r--r-- | community/aide/PKGBUILD | 7 |
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 } |