From c258ad6fca91fbbfc2b34d020227f0ca86a5b933 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 11 Mar 2014 19:28:08 +0100 Subject: [PATCH] xbps: disable SSP on i686-musl for now until it's fixed. --- srcpkgs/xbps/template | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/srcpkgs/xbps/template b/srcpkgs/xbps/template index cb5ec51bb0a..7ffb9596789 100644 --- a/srcpkgs/xbps/template +++ b/srcpkgs/xbps/template @@ -31,6 +31,11 @@ else fi +if [ "$XBPS_TARGET_MACHINE" = "i686-musl" ]; then + # XXX disable SSP until the issue is found. + CFLAGS+=" -fno-stack-protector" +fi + do_fetch() { git clone -b${version} git://github.com/voidlinux/xbps.git xbps-${version} }