diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-09-02 04:14:19 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-02 04:14:19 -0300 |
commit | 46a1e45e551cb27f002165a388547f16591db5c8 (patch) | |
tree | 0c68edb50c8bc101d3a1de7df8dcec080a452ff3 /testing/sniffglue | |
parent | 8d296c43ad5b2c26347fb6cf80404d1096b4d0ec (diff) | |
download | aports-46a1e45e551cb27f002165a388547f16591db5c8.tar.bz2 aports-46a1e45e551cb27f002165a388547f16591db5c8.tar.xz |
testing/sniffglue: export -fno-stack-protector
Diffstat (limited to 'testing/sniffglue')
-rw-r--r-- | testing/sniffglue/APKBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/testing/sniffglue/APKBUILD b/testing/sniffglue/APKBUILD index f29a6208df..e43498055e 100644 --- a/testing/sniffglue/APKBUILD +++ b/testing/sniffglue/APKBUILD @@ -20,14 +20,14 @@ source=" $pkgname-$pkgver.tar.gz::https://github.com/kpcyrd/$pkgname/archive/v$pkgver.tar.gz " -build() { - # libring fails to compile otherwise - case "$CARCH" in - x86) - export CFLAGS="$CFLAGS -fno-stack-protector" - ;; - esac +# libring fails to compile otherwise +case "$CARCH" in + x86) + export CFLAGS="$CFLAGS -fno-stack-protector" + ;; +esac +build() { cargo build --release --locked } |