From b6fe19f925faaf287b24012a316a0b1b447e2f6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Tue, 11 Aug 2020 16:49:38 +0200 Subject: [PATCH] libunwind: fix previous change for i686-musl For i686-musl linking against libunwind is still necessary, even if the build of libunwind itself does not need it. --- srcpkgs/libunwind/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libunwind/template b/srcpkgs/libunwind/template index 9031e4245cc..2bafd62b62d 100644 --- a/srcpkgs/libunwind/template +++ b/srcpkgs/libunwind/template @@ -28,7 +28,7 @@ pre_configure() { # it needs to be here because it's used directly in a macro in a # public header, so things using libunwind need linkage against it case "$XBPS_TARGET_MACHINE" in - ppc*-musl) + i686-musl|ppc*-musl) vsed -i src/unwind/libunwind.pc.in -e \ 's/\-lunwind/\-lunwind \-lucontext/' ;;