gentoo-ebuilds/sys-libs/gwenhywfar/files/gwenhywfar-5.12.1-fix-qt6-detect.patch
Andreas Sturmlechner 24c483b135
sys-libs/gwenhywfar: Fix Qt6 detection w/ dev-qt/qtchooser installed
Thanks-to: Moritz Bechler <mbechler@eenterphace.org>
Closes: https://bugs.gentoo.org/961547
Closes: https://bugs.gentoo.org/965843
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
2025-11-09 18:08:39 +01:00

12 lines
365 B
Diff

Gentoo-bug: https://bugs.gentoo.org/965843
--- a/m4/ax_have_qt.m4
+++ b/m4/ax_have_qt.m4
@@ -146,7 +146,7 @@
if test "$ver" = "2.0"; then
# Add QT_HOST_BINS and QT_HOST_LIBEXECS paths to PATH
for var in QT_HOST_BINS QT_HOST_LIBEXECS; do
- PATH=$PATH:`$QTPATHS --query $var`
+ PATH=`$QTPATHS --query $var`:$PATH
done
fi