From 2f842aada9a4caba49550cacc257c1921d5eedb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Sat, 10 Apr 2021 00:09:29 -0300 Subject: [PATCH] libguestfs: mark broken on musl. Our musl-legacy-compat package should provide static inline versions of error(3), but it's erroring out during linking: /usr/bin/ld: ../lib/.libs/libguestfs.so: undefined reference to `error' collect2: error: ld returned 1 exit status --- srcpkgs/libguestfs/template | 3 +++ 1 file changed, 3 insertions(+) diff --git a/srcpkgs/libguestfs/template b/srcpkgs/libguestfs/template index b3df393d76..81afe313d2 100644 --- a/srcpkgs/libguestfs/template +++ b/srcpkgs/libguestfs/template @@ -30,6 +30,9 @@ conf_files="etc/libguestfs-tools.conf nocross=yes archs="i686* x86_64* ppc64le*" +if [ "$XBPS_TARGET_LIBC" = musl ]; then + broken="https://build.voidlinux.org/builders/x86_64-musl_builder/builds/35666/steps/shell_3/logs/stdio" +fi build_options="ruby python go php lua fuse" build_options_default="ruby fuse"