From 0885302f806b16839988e447ad67bfebf46d0751 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Tue, 24 Mar 2020 19:44:01 +0100 Subject: [PATCH] micropython: Needs musl-legacy-compat for *-musl --- srcpkgs/micropython/template | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/srcpkgs/micropython/template b/srcpkgs/micropython/template index 2406ee854dd..45ba29c81c4 100644 --- a/srcpkgs/micropython/template +++ b/srcpkgs/micropython/template @@ -16,6 +16,10 @@ case "$XBPS_TARGET_MACHINE" in ppc*) broken="missing nlr_push" ;; esac +if [ "$XBPS_TARGET_LIBC" = "musl" ]; then + makedepends+=" musl-legacy-compat" +fi + pre_configure() { sed -i 's|-Werror||;/^COPT =/d' Makefile }