summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2012-10-17 13:21:24 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2012-10-17 13:21:24 -0500
commitc89ca32bf927501c47242042d50cca6a71bcfbcc (patch)
tree01044a359e38a7ac5825b0fd246eec2035f81dbf /community
parentc34a7094e696a8656364f061bd2628d5997c0b28 (diff)
Disable sse to carch=mips64el in calf
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
}