From 1df17aebb00f91ca1a88fce17e35c9066aef2a3d Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Wed, 6 Apr 2022 06:52:26 +0300 Subject: [PATCH 30/30] winbuild.sh: Fix check for Qt availability for "all" guis See osdn #44114 Signed-off-by: Marko Lindqvist --- windows/installer_cross/winbuild.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/installer_cross/winbuild.sh b/windows/installer_cross/winbuild.sh index 121d738ddd..605ad992cb 100755 --- a/windows/installer_cross/winbuild.sh +++ b/windows/installer_cross/winbuild.sh @@ -137,8 +137,8 @@ if test "x$SINGLE_GUI" != "xtrue" || test "x$2" = "xruledit" ; then fi fi -if test "x$SINGLE_GUI" != "xtrue" ; then - if test "xQT5" = "xyes" || test "xQT6" = "xyes" ; +if test "$SINGLE_GUI" != "true" ; then + if test "$QT5" = "yes" || test "$QT6" = "yes" then CLIENTS="$CLIENTS,qt" FCMP="$FCMP,qt" -- 2.35.1