From da46dd773906bf8258cc72647fe5e5d0d48716d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 7 Sep 2020 21:55:47 +0700 Subject: [PATCH] fio: mark broken on platform without native libatomic Unlock the builder for now --- srcpkgs/fio/template | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/srcpkgs/fio/template b/srcpkgs/fio/template index 900d3ac44d6..3393f590da9 100644 --- a/srcpkgs/fio/template +++ b/srcpkgs/fio/template @@ -20,6 +20,11 @@ case "$XBPS_TARGET_MACHINE" in i686*|x86_64*|ppc64*) makedepends+=" libnuma-devel" esac +if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then + makedepends+=" libatomic-devel" + broken="https://build.voidlinux.org/builders/armv6l-musl_builder/builds/28631/steps/shell_3/logs/stdio" +fi + do_configure() { ./configure --prefix=/usr --extra-cflags="$CFLAGS" --disable-native }