From 29678055d040e74570b34ecf62495d729e5cc780 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 21 Feb 2022 17:03:06 +0100 Subject: [PATCH] No autoreconf aria2 --- kiwixbuild/dependencies/aria2.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kiwixbuild/dependencies/aria2.py b/kiwixbuild/dependencies/aria2.py index a15466a..c02e4a4 100644 --- a/kiwixbuild/dependencies/aria2.py +++ b/kiwixbuild/dependencies/aria2.py @@ -14,10 +14,10 @@ class Aria2(Dependency): '58d1e7608c12404f0229a3d9a4953d0d00c18040504498b483305bcb3de907a5', 'https://github.com/aria2/aria2/releases/download/release-1.36.0/aria2-1.36.0.tar.xz') - def _post_prepare_script(self, context): - context.try_skip(self.extract_path) - command = "autoreconf -i" - run_command(command, self.extract_path, context) + #def _post_prepare_script(self, context): + # context.try_skip(self.extract_path) + # command = "autoreconf -i" + # run_command(command, self.extract_path, context) class Builder(MakeBuilder): dependencies = ['zlib']