diff options
Diffstat (limited to 'main/py-mock/APKBUILD')
-rw-r--r-- | main/py-mock/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/py-mock/APKBUILD b/main/py-mock/APKBUILD index 361c9698da..6a49697f40 100644 --- a/main/py-mock/APKBUILD +++ b/main/py-mock/APKBUILD @@ -28,12 +28,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="0febfafd14330c9dcaa40de2d82d40ad mock-2.0.0.tar.gz" |