From 10c767e8ce933f3fe3d26ed9188cd517c79d8808 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 8 Apr 2020 18:09:39 +0200 Subject: [PATCH] Do not compile zstd on flatpak. The meson.build file of meson is not in the main directory. We have to update kiwix-build to handle this. For now, compile flatpak without zstd. We will need to do a new build on flatpak with zstd soon. --- kiwixbuild/flatpak_builder.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kiwixbuild/flatpak_builder.py b/kiwixbuild/flatpak_builder.py index f0c4a59..7c8f893 100644 --- a/kiwixbuild/flatpak_builder.py +++ b/kiwixbuild/flatpak_builder.py @@ -139,6 +139,8 @@ class FlatpakBuilder: steps = remove_duplicates(target_steps()) modules = OrderedDict() for stepDef in steps: + if stepDef[1] == 'zstd': + continue module = modules.setdefault(stepDef[1], {}) module['name'] = stepDef[1] if stepDef[0] == 'source':