diff options
Diffstat (limited to 'testing/pep8/APKBUILD')
-rw-r--r-- | testing/pep8/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/pep8/APKBUILD b/testing/pep8/APKBUILD index 4f398c77ad..38f76a4072 100644 --- a/testing/pep8/APKBUILD +++ b/testing/pep8/APKBUILD @@ -30,12 +30,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 } md5sums="2b03109b0618afe3b04b3e63b334ac9d pep8-1.7.0.tar.gz" |