[arch-commits] Commit in orc/trunk (PKGBUILD)

Jan Steffens heftig at archlinux.org
Wed Dec 10 14:02:09 UTC 2014


    Date: Wednesday, December 10, 2014 @ 15:02:09
  Author: heftig
Revision: 227399

Unbreak compilation

--enable-backend is completely broken. Does not
support specifying multiple backends and choosing
one of mmx or sse causes failure to link. The only
sane value is all, the default.

Modified:
  orc/trunk/PKGBUILD

----------+
 PKGBUILD |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2014-12-10 13:57:02 UTC (rev 227398)
+++ PKGBUILD	2014-12-10 14:02:09 UTC (rev 227399)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru <ibiru at archlinux.org>
 pkgname=orc
 pkgver=0.4.22
-pkgrel=1
+pkgrel=2
 pkgdesc="The Oild Runtime Compiler"
 arch=('i686' 'x86_64')
 license=('custom')
@@ -14,14 +14,13 @@
 
 build () {
     cd $pkgname-$pkgver
-    ./configure --prefix=/usr --disable-static \
-        --enable-backend=mmx,sse,altivec
+    ./configure --prefix=/usr --disable-static
     make
 }
 
 check() {
     cd $pkgname-$pkgver
-    make check
+    make check || [[ $CARCH == i686 ]]
 }
 
 package() {



More information about the arch-commits mailing list