testing/ffsend: disable stack-protector for backtrace-sys

This commit is contained in:
Leo 2019-08-30 18:53:28 -03:00
parent 661fec13dc
commit fd441db852

View File

@ -11,6 +11,12 @@ makedepends="cargo openssl-dev"
source="https://gitlab.com/timvisee/ffsend/-/archive/v$pkgver/ffsend-v$pkgver.tar.gz"
builddir="$srcdir/$pkgname-v$pkgver"
case "$CARCH" in
x86)
export CFLAGS="$CFLAGS -fno-stack-protector"
;;
esac
build() {
cargo build --release
}