diff options
author | Rene Engelhard <rene@debian.org> | 2018-05-15 15:57:29 +0200 |
---|---|---|
committer | Rene Engelhard <rene@debian.org> | 2018-05-15 16:24:43 +0200 |
commit | fe4bc1c09d8f647c2ebb46e9ce6e2a07ee65cdf8 (patch) | |
tree | 7ddb6d247a4bc35baf4f6029cbdbc84782f02020 /svl | |
parent | 86e8cfdd54ac1b9413f0c86cbc23a80162806685 (diff) |
CppunitTest_svl_qa_cppunit: fix system-libnumbertext build
libnumbertext_numbertext package doesn't exist...
Change-Id: I5fc7c9c2386c10a10f2980655292ab12beb1a977
Diffstat (limited to 'svl')
-rw-r--r-- | svl/CppunitTest_svl_qa_cppunit.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/svl/CppunitTest_svl_qa_cppunit.mk b/svl/CppunitTest_svl_qa_cppunit.mk index a067efe8794f..4f3cdcae7b63 100644 --- a/svl/CppunitTest_svl_qa_cppunit.mk +++ b/svl/CppunitTest_svl_qa_cppunit.mk @@ -28,10 +28,12 @@ $(eval $(call gb_CppunitTest_use_externals,svl_qa_cppunit, \ )) ifeq ($(ENABLE_LIBNUMBERTEXT),TRUE) +ifneq ($(SYSTEM_LIBNUMBERTEXT),YES) $(eval $(call gb_CppunitTest_use_package,svl_qa_cppunit, \ libnumbertext_numbertext \ )) endif +endif $(eval $(call gb_CppunitTest_add_defs,svl_qa_cppunit, \ -DENABLE_LIBNUMBERTEXT=$(if $(filter TRUE,$(ENABLE_LIBNUMBERTEXT)),1,0) \ |