From fdd8ea4a2e61b26a8f1943cf5a1a883d09dd4e8e Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 10 Feb 2014 16:46:50 +0100 Subject: [PATCH] chroot-gcc: fix triplet for i686-musl. --- srcpkgs/chroot-gcc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/chroot-gcc/template b/srcpkgs/chroot-gcc/template index 4efbc186920..dc2eb956aa5 100644 --- a/srcpkgs/chroot-gcc/template +++ b/srcpkgs/chroot-gcc/template @@ -175,7 +175,7 @@ do_install() { x86_64) _triplet="x86_64-unknown-linux-gnu";; x86_64-musl) _triplet="x86_64-unknown-linux-musl";; i686) _triplet="i686-pc-linux-gnu";; - i686-musl) _triplet="i686-pc-linux-musl";; + i686-musl) _triplet="i686-linux-musl";; armv6l) _triplet="arm-linux-gnueabihf";; armv7l) _triplet="arm-linux-gnueabihf7";; armv6l-musl) _triplet="arm-linux-musleabi";;