diff options
Diffstat (limited to 'testing/py-pies/APKBUILD')
-rw-r--r-- | testing/py-pies/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/py-pies/APKBUILD b/testing/py-pies/APKBUILD index 10fdcb72e3..04fe7d94e1 100644 --- a/testing/py-pies/APKBUILD +++ b/testing/py-pies/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 } md5sums="c91ed38129a7f4425b72c8ffd009e2b5 pies-2.6.1.tar.gz" |