mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-28 05:49:33 +00:00
Do not try to compile xz and xzdec tools.
libaria2 use xz to configure its source. If we compile the xz tool, libaria2 will use the compiled binary. However, on cross compilation, xz will be compiled for the target platform and run on the host platform. And so, it will fails. As we do not use those tools at all, lets not compile them.
This commit is contained in:
@ -87,7 +87,7 @@ class lzma(Dependency):
|
||||
class Builder(MakeBuilder):
|
||||
@property
|
||||
def configure_option(self):
|
||||
return "--disable-assembler"
|
||||
return "--disable-assembler --disable-xz --disable-xzdec"
|
||||
|
||||
class UUID(Dependency):
|
||||
name = 'uuid'
|
||||
|
Reference in New Issue
Block a user