From 6c689255770db8c02519ce19872e319d800c88dc Mon Sep 17 00:00:00 2001 From: q66 Date: Thu, 15 Aug 2019 00:24:44 +0200 Subject: [PATCH] workrave: properly nocross instead of broken --- srcpkgs/workrave/template | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/srcpkgs/workrave/template b/srcpkgs/workrave/template index 7ef66057e6..f34f232ef2 100644 --- a/srcpkgs/workrave/template +++ b/srcpkgs/workrave/template @@ -19,13 +19,12 @@ homepage="http://www.workrave.org/" distfiles="https://github.com/rcaelers/${pkgname}/archive/v${_realversion}.tar.gz" checksum=969fb8a6cb14aed08b2294bd01dbb2c2485a4c9bf6936fa8a513867aed759f63 -case "$XBPS_TARGET_MACHINE" in - x86_64-musl) ;; - *-musl) broken="gobject introspection" ;; -esac - build_options="pulseaudio" +if [ "$XBPS_TARGET_LIBC" = "musl" ]; then + nocross="Locale.cc: undefined reference to '_nl_msg_cat_cntr'" +fi + pre_configure() { NOCONFIGURE=1 ./autogen.sh }