From 204b479bf4816358826da5d9cc6ed8111f1f1a32 Mon Sep 17 00:00:00 2001 From: xeroxslayer Date: Thu, 25 Jul 2024 13:22:45 +0200 Subject: [PATCH] webrtc-audio-processing: fix for i686-musl build --- srcpkgs/webrtc-audio-processing/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/webrtc-audio-processing/template b/srcpkgs/webrtc-audio-processing/template index e5277d17e0b..e8d6f805c35 100644 --- a/srcpkgs/webrtc-audio-processing/template +++ b/srcpkgs/webrtc-audio-processing/template @@ -13,7 +13,7 @@ distfiles="${FREEDESKTOP_SITE}/pulseaudio/webrtc-audio-processing/webrtc-audio-p checksum=95552fc17faa0202133707bbb3727e8c2cf64d4266fe31bfdb2298d769c1db75 # Upstream issue: https://gitlab.freedesktop.org/pulseaudio/webrtc-audio-processing/-/issues/5 -if [ "$XBPS_MACHINE" = "i686" ]; then +if [[ "$XBPS_TARGET_MACHINE" = "i686"* ]]; then CXXFLAGS="-DPFFFT_SIMD_DISABLE=1" CFLAGS="-DPFFFT_SIMD_DISABLE=1" fi