This commit is contained in:
Matthieu Gautier 2020-09-28 18:10:48 +02:00
parent 1772807d82
commit b484e1a356
2 changed files with 10 additions and 10 deletions

View File

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

View File

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