diff options
Diffstat (limited to 'testing/mitmproxy/APKBUILD')
-rw-r--r-- | testing/mitmproxy/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/mitmproxy/APKBUILD b/testing/mitmproxy/APKBUILD index c4b4fe8275..185a900b3c 100644 --- a/testing/mitmproxy/APKBUILD +++ b/testing/mitmproxy/APKBUILD @@ -27,12 +27,12 @@ prepare() { build() { cd "$_builddir" - python setup.py build || return 1 + python2 setup.py build || return 1 } package() { cd "$_builddir" - python setup.py install --prefix=/usr --root="$pkgdir" || return 1 + python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1 } py() { |