From 1039db7bf8148e9f0d0bd24d811e61d92d7c1cf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Via=C4=8Das=C5=82a=C5=AD?= Date: Sun, 12 Jan 2025 16:21:27 +0300 Subject: [PATCH] Fix Qt build (#17397) Related to #17346 --- qb/config.libs.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/qb/config.libs.sh b/qb/config.libs.sh index 2024d810d09..2e1ff7222ea 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -304,11 +304,11 @@ if [ "$HAVE_QT" != 'no' ]; then check_enabled QT6NETWORK QT Qt 'Qt6Network is' user #check_enabled QT6WEBENGINE QT Qt 'Qt6Webengine is' user - if [ "$HAVE_QT6CORE" == 'yes' ] && \ - [ "$HAVE_QT6GUI" == 'yes' ] && \ - [ "$HAVE_QT6WIDGETS" == 'yes' ] && \ - [ "$HAVE_QT6CONCURRENT" == 'yes' ] && \ - [ "$HAVE_QT6NETWORK" == 'yes' ] + if [ "$HAVE_QT6CORE" = 'yes' ] && \ + [ "$HAVE_QT6GUI" = 'yes' ] && \ + [ "$HAVE_QT6WIDGETS" = 'yes' ] && \ + [ "$HAVE_QT6CONCURRENT" = 'yes' ] && \ + [ "$HAVE_QT6NETWORK" = 'yes' ] then HAVE_QT6='yes' add_define MAKEFILE HAVE_QT6 1