From 0e6e926d91d01f7cde5e70e132050ed019dc36c5 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Mon, 20 May 2024 16:54:31 -0400 Subject: [PATCH] audacious-base: fix build --- srcpkgs/audacious-base/template | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/srcpkgs/audacious-base/template b/srcpkgs/audacious-base/template index e3553fdd0cc..5f61312488a 100644 --- a/srcpkgs/audacious-base/template +++ b/srcpkgs/audacious-base/template @@ -21,6 +21,12 @@ build_options="gtk3 qt" build_options_default="qt" vopt_conflict gtk3 qt +pre_configure() { + # Meson uses paths from pkg-config which is /usr/lib32/qt6 when cross compiling 32-bit + # Work around this for now + export PATH="/usr/lib/qt6/libexec/:$PATH" +} + post_install() { vlicense COPYING }