Fix up "Fix gtk3_kde5 build when qt5/kf5 VCL plugins are not built"
commit 5801b9fc65
Author: Michael Weghorn <m.weghorn@posteo.de>
Date: Thu Jan 27 08:17:54 2022 +0000
Fix gtk3_kde5 build when qt5/kf5 VCL plugins are not built
was missing the spaces for the 'filter' function, resulting
in an '--enable-kf5 --enable-gtk3-kde5' build failing because
"TRUETRUE" doesn't match "TRUE".
Change-Id: I6dca8fb4cd9f58077ce08f51e003f3539f368f77
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129047
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
This commit is contained in:
parent
b5dd694e75
commit
ba67202007
1 changed files with 2 additions and 2 deletions
|
@ -2979,7 +2979,7 @@ endef # gb_LinkTarget__use_postgresql
|
|||
|
||||
endif # !SYSTEM_POSTGRESQL
|
||||
|
||||
ifneq (,$(filter TRUE,$(ENABLE_KF5)$(ENABLE_GTK3_KDE5)))
|
||||
ifneq (,$(filter TRUE,$(ENABLE_KF5) $(ENABLE_GTK3_KDE5)))
|
||||
|
||||
define gb_LinkTarget__use_kf5
|
||||
$(call gb_LinkTarget_set_include,$(1),\
|
||||
|
@ -3007,7 +3007,7 @@ endif # ENABLE_KF5
|
|||
|
||||
|
||||
|
||||
ifneq (,$(filter TRUE,$(ENABLE_QT5)$(ENABLE_GTK3_KDE5)))
|
||||
ifneq (,$(filter TRUE,$(ENABLE_QT5) $(ENABLE_GTK3_KDE5)))
|
||||
|
||||
define gb_LinkTarget__use_qt5
|
||||
$(call gb_LinkTarget_set_include,$(1),\
|
||||
|
|
Loading…
Reference in a new issue