From a021f8e7399dfb62471b9473c2630af6985893b6 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Sat, 8 Apr 2017 21:14:27 +0200 Subject: [PATCH] Add missing declarations of libzim. The dependencies of libzim were missing. If we run a single run to compile everything everything run correctly as zlib and lzma will be installed because of kiwix-lib (and other) dependencies. --- dependencies.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dependencies.py b/dependencies.py index 1befa3d..5bbcf28 100644 --- a/dependencies.py +++ b/dependencies.py @@ -232,6 +232,7 @@ class Icu_cross_compile(Icu): class Libzim(Dependency): name = "libzim" + dependencies = ['zlib', 'lzma'] class Source(GitClone): git_remote = "https://github.com/openzim/libzim.git"