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.
This commit is contained in:
Matthieu Gautier 2020-04-08 18:09:39 +02:00
parent 3c8a9ffbfe
commit 10c767e8ce
1 changed files with 2 additions and 0 deletions

View File

@ -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':