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:
parent
3c8a9ffbfe
commit
10c767e8ce
|
@ -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':
|
||||
|
|
Loading…
Reference in New Issue