diff options
-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 } |