From b484e1a356c90877663fa2e758acf1d0bdc630f0 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 28 Sep 2020 18:10:48 +0200 Subject: [PATCH] gumbo --- .github/workflows/ci.yml | 12 ++++++------ kiwixbuild/dependencies/gumbo.py | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2d7c98..3cdf9d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,12 +27,12 @@ jobs: - name: Install packages run: | choco.exe install pkgconfiglite ninja - - run: | - ls - libtoolize - aclocal - autoconf - automake + #- run: | + #ls + #libtoolize + # aclocal + #autoconf + #automake - name: Install python modules shell: bash run: | diff --git a/kiwixbuild/dependencies/gumbo.py b/kiwixbuild/dependencies/gumbo.py index 078f0fd..8fc82af 100644 --- a/kiwixbuild/dependencies/gumbo.py +++ b/kiwixbuild/dependencies/gumbo.py @@ -15,9 +15,9 @@ class Gumbo(Dependency): '28463053d44a5dfbc4b77bcf49c8cee119338ffa636cc17fc3378421d714efad', 'https://github.com/google/gumbo-parser/archive/v0.10.1.tar.gz') - def _post_prepare_script(self, context): - context.try_skip(self.extract_path) - command = "./autogen.sh" - run_command(command, self.extract_path, context) + # def _post_prepare_script(self, context): + # context.try_skip(self.extract_path) + # command = "./autogen.sh" + # run_command(command, self.extract_path, context) Builder = MakeBuilder