Skip to content

Commit

Permalink
Fix Qt build (#17397)
Browse files Browse the repository at this point in the history
Related to #17346
  • Loading branch information
viachaslavic authored Jan 12, 2025
1 parent f309266 commit 1039db7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions qb/config.libs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1039db7

Please sign in to comment.