[Libreoffice-commits] core.git: Branch 'aoo/trunk' - vcl/Module_vcl.mk
Kay Schenk
kschenk at apache.org
Thu Mar 19 15:08:57 PDT 2015
vcl/Module_vcl.mk | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
New commits:
commit 1b4025b58e01bcc3151d2b32ed4a3a99c7329245
Author: Kay Schenk <kschenk at apache.org>
Date: Thu Mar 19 21:37:55 2015 +0000
#126118# Fix malformed if statements in makefile.
diff --git a/vcl/Module_vcl.mk b/vcl/Module_vcl.mk
index 3779f68..6272197 100644
--- a/vcl/Module_vcl.mk
+++ b/vcl/Module_vcl.mk
@@ -38,17 +38,19 @@ $(eval $(call gb_Module_add_targets,vcl,\
Library_desktop_detector \
))
-ifneq ($(ENABLE_GTK),)
+
+ifeq ($(ENABLE_GTK),TRUE)
$(eval $(call gb_Module_add_targets,vcl,\
Library_vclplug_gtk \
))
endif
-ifneq ($(ENABLE_KDE),)
+
+ifeq ($(ENABLE_KDE),TRUE)
$(eval $(call gb_Module_add_targets,vcl,\
Library_vclplug_kde \
))
endif
-ifneq ($(ENABLE_KDE4),)
+ifeq ($(ENABLE_KDE4),TRUE)
$(eval $(call gb_Module_add_targets,vcl,\
Library_vclplug_kde4 \
))
More information about the Libreoffice-commits
mailing list