From 46ededb8153f0110a9bc297d64a5ad4ef31f807f Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 11 Nov 2014 22:07:43 +0100 Subject: [PATCH] gnutls: unbreak x86: force host triplet detection. --- srcpkgs/gnutls/template | 3 +++ 1 file changed, 3 insertions(+) diff --git a/srcpkgs/gnutls/template b/srcpkgs/gnutls/template index 491f254e923..e8bdc40a777 100644 --- a/srcpkgs/gnutls/template +++ b/srcpkgs/gnutls/template @@ -5,6 +5,9 @@ revision=1 build_style=gnu-configure configure_args="--with-zlib --disable-guile --disable-static --disable-valgrind-tests --disable-rpath" +if [ "$XBPS_TARGET_MACHINE" = "i686" ]; then + configure_args+=" --host=i686-pc-linux-gnu" +fi short_desc="GNU Transport Layer Security library" maintainer="Juan RP " homepage="http://www.gnu.org/software/gnutls/"