diff options
Diffstat (limited to 'testing/py-procfs/APKBUILD')
-rw-r--r-- | testing/py-procfs/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/py-procfs/APKBUILD b/testing/py-procfs/APKBUILD index a7fa6323c1..d5f1b6f31b 100644 --- a/testing/py-procfs/APKBUILD +++ b/testing/py-procfs/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="6ca053f33361eef169a5f15c09df76d6 procfs-0.1.2.tar.gz" |