From 9a73c5796e7bc345d1ce316a723712e3878b5175 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 17 Jul 2017 11:05:53 +0200 Subject: [PATCH] [CTPP2] Always depend on ctpp2c. Even on android we are compiling the resources. So we need ctpp2c all the time. --- dependencies.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dependencies.py b/dependencies.py index 606bd75..9d47086 100644 --- a/dependencies.py +++ b/dependencies.py @@ -292,9 +292,9 @@ class Kiwixlib(Dependency): @property def dependencies(self): - base_dependencies = ["pugixml", "libzim", "zlib", "lzma"] + base_dependencies = ["pugixml", "libzim", "zlib", "lzma", "ctpp2c"] if self.buildEnv.platform_info.build != 'android': - base_dependencies += ['ctpp2', 'ctpp2c'] + base_dependencies += ['ctpp2'] if self.buildEnv.platform_info.build != 'native': return base_dependencies + ["icu4c_cross-compile"] else: