From ec3a44b04bdd12e7dde3e74d99dea17b5e9dcded Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 6 Jun 2014 10:35:10 +0200 Subject: [PATCH] handbrake: force SSE to repair x86 build; only for x86. --- srcpkgs/handbrake/template | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/srcpkgs/handbrake/template b/srcpkgs/handbrake/template index ae1e04ba01b..ce70999d611 100644 --- a/srcpkgs/handbrake/template +++ b/srcpkgs/handbrake/template @@ -1,4 +1,6 @@ # Template file for 'handbrake' +only_for_archs="i686 x86_64" + pkgname=handbrake version=0.9.9 revision=3 @@ -28,11 +30,13 @@ do_configure() { autoreconf -vi cd ${wrksrc} + export CFLAGS+=" -msse" ./configure --prefix=/usr --force --disable-gtk-update-checks } do_build() { cd build + export CFLAGS+=" -msse" make ${makejobs} }