From fa3f33d3c7d21147bfd62a5ffd787ee2cc0362a4 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 27 Sep 2017 19:03:11 +0200 Subject: [PATCH 1/2] Use sudo to install pip dependencies in travis --- travis/install_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/install_deps.sh b/travis/install_deps.sh index ce1cd71..cdf166b 100755 --- a/travis/install_deps.sh +++ b/travis/install_deps.sh @@ -29,7 +29,7 @@ esac sudo apt-get update -qq sudo apt-get install -qq python3-pip ${PACKAGES} -pip3 install meson +sudo pip3 install meson # Ninja cd $HOME From cd72a2d73c760a7906157b38261d6f2c18041046 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Tue, 8 Aug 2017 10:36:55 -0400 Subject: [PATCH 2/2] Look for renamed kiwix-compile-resources script as well See https://github.com/kiwix/kiwix-lib/pull/76 --- static/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/meson.build b/static/meson.build index 0682110..b7b3328 100644 --- a/static/meson.build +++ b/static/meson.build @@ -1,4 +1,4 @@ -res_compiler = find_program('compile_resources.py') +res_compiler = find_program('kiwix-compile-resources', 'compile_resources.py') subdir('server')