diff options
Diffstat (limited to 'testing/py-discogs-client/APKBUILD')
-rw-r--r-- | testing/py-discogs-client/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/py-discogs-client/APKBUILD b/testing/py-discogs-client/APKBUILD index 6d0204df45..fc52b5e62d 100644 --- a/testing/py-discogs-client/APKBUILD +++ b/testing/py-discogs-client/APKBUILD @@ -26,12 +26,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="2cc57e1d134aa93404e779b9311676fa discogs-client-2.0.2.tar.gz" |