From dfe3746f1dc63311debf430226ec7dfdc10f2e09 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Sat, 20 Jan 2024 12:53:05 -0500 Subject: [PATCH] wine: fix musl conditional fixes #48302 --- srcpkgs/wine/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/wine/template b/srcpkgs/wine/template index 15769a8351d..40a98002f23 100644 --- a/srcpkgs/wine/template +++ b/srcpkgs/wine/template @@ -1,7 +1,7 @@ # Template file for 'wine' pkgname=wine version=9.0 -revision=1 +revision=2 _pkgver=${version/r/-r} create_wrksrc=yes build_wrksrc=wine-${_pkgver} @@ -74,7 +74,7 @@ if [ "$XBPS_LIBC" = "glibc" ]; then hostmakedepends+=" prelink" fi -if [ "XBPS_TARGET_LIBC" = "musl" ]; then +if [ "$XBPS_TARGET_LIBC" = "musl" ]; then configure_args+=" --enable-archs=i386,x86_64" makedepends+=" cross-i686-w64-mingw32" fi