diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-02-11 15:57:18 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-02-12 09:53:08 +0100 |
commit | e3abec3f07f2a710bfce66f77b33f494e2aa4972 (patch) | |
tree | 740f34ea017abc08ce444b93ccad57a628e4f444 /sc | |
parent | b62f5c2a22d968d06ea9e638126278bbd1158bf6 (diff) |
fdo#74825: fix missing lcms2/libxslt/curl in installation sets
The assumption that all configure variables had been normalized to
TRUE/<empty> turned out not to hold; convert a bit more in that
direction.
(regression from 4af38b099c741c3676aefeb20c515913aaeed666)
Change-Id: I2127c515e8a833a07c9b26ed9d693ce5a1853fe4
Diffstat (limited to 'sc')
-rw-r--r-- | sc/Library_sc.mk | 2 | ||||
-rw-r--r-- | sc/Library_scqahelper.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/Library_sc.mk b/sc/Library_sc.mk index 32d71da259ce..2b2ef76567a8 100644 --- a/sc/Library_sc.mk +++ b/sc/Library_sc.mk @@ -45,7 +45,7 @@ $(eval $(call gb_Library_use_externals,sc,\ mdds_headers \ )) -ifeq ($(SYSTEM_LIBORCUS),YES) +ifneq ($(SYSTEM_LIBORCUS),) $(eval $(call gb_Library_use_externals,sc,orcus)) else $(eval $(call gb_Library_use_externals,sc,orcus-parser)) diff --git a/sc/Library_scqahelper.mk b/sc/Library_scqahelper.mk index cbdc99df6441..351b1150f0ea 100644 --- a/sc/Library_scqahelper.mk +++ b/sc/Library_scqahelper.mk @@ -21,7 +21,7 @@ $(eval $(call gb_Library_use_externals,scqahelper, \ cppunit \ )) -ifeq ($(SYSTEM_LIBORCUS),YES) +ifneq ($(SYSTEM_LIBORCUS),) $(eval $(call gb_Library_use_externals,scqahelper,orcus)) else $(eval $(call gb_Library_use_externals,scqahelper,orcus-parser)) |