summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/calf/PKGBUILD7
1 files changed, 6 insertions, 1 deletions
diff --git a/community/calf/PKGBUILD b/community/calf/PKGBUILD
index 993264769..63a320e47 100644
--- a/community/calf/PKGBUILD
+++ b/community/calf/PKGBUILD
@@ -19,7 +19,12 @@ sha256sums=('57cb536a24a7b9df890dc665fd75c2f4d307859e55f3b25015c73cdc726a56b5')
build() {
cd $srcdir/$pkgname-$pkgver-rc$_rc
- ./configure --prefix=/usr --enable-experimental --enable-sse
+ if [ "$CARCH" != "mips64el" ]; then
+ confflags="--enable-sse"
+ else
+ confflags=""
+ fi
+ ./configure --prefix=/usr --enable-experimental ${confflags}
make
}