[Libreoffice-commits] core.git: RepositoryExternal.mk
Michael Stahl
mstahl at redhat.com
Wed Mar 30 10:27:22 UTC 2016
RepositoryExternal.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 1fe53fe514dac2445197a663025ccb35ddd6b794
Author: Michael Stahl <mstahl at redhat.com>
Date: Wed Mar 30 12:24:02 2016 +0200
RepositoryExternal: fix confusing condition
This looks like it does XOR but vmiklos says it should do OR.
Change-Id: I11cee255fb243d0cd763e97d13da1e31a8e598e9
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index af22fe2..3582790 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -183,7 +183,7 @@ endef
endif # SYSTEM_CPPUNIT
-ifeq ($(ENABLE_OPENGL)$(if $(filter ANDROID,$(OS)),TRUE),TRUE)
+ifneq ($(ENABLE_OPENGL)$(if $(filter ANDROID,$(OS)),TRUE),)
ifneq ($(SYSTEM_GLEW),)
define gb_LinkTarget__use_glew
More information about the Libreoffice-commits
mailing list