From b99d9265373d2032168cb5953c64e4f915578981 Mon Sep 17 00:00:00 2001 From: John Galt Date: Thu, 4 Sep 2014 11:28:09 -0700 Subject: [PATCH] MesaLib-git: fix ARM builds @xtraeme --- srcpkgs/MesaLib-git/template | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/srcpkgs/MesaLib-git/template b/srcpkgs/MesaLib-git/template index 6228f44f09d..000f3279da4 100644 --- a/srcpkgs/MesaLib-git/template +++ b/srcpkgs/MesaLib-git/template @@ -179,7 +179,13 @@ mesa-swraster-dri-git_package() { depends="libGL-git libEGL-git libGLES-git" pkg_install() { vmove "usr/lib/xorg/modules/drivers/swrast*" - vmove "usr/lib/gallium-pipe/pipe_swrast.so" + # XXX + case "$XBPS_TARGET_MACHINE" in + i686*|x86_64*) + vmove "usr/lib/gallium-pipe/pipe_swrast.so" + ;; + esac + } }