diff options
Diffstat (limited to 'testing/py-nikola/APKBUILD')
-rw-r--r-- | testing/py-nikola/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/py-nikola/APKBUILD b/testing/py-nikola/APKBUILD index 9760a72e00..48c84878b4 100644 --- a/testing/py-nikola/APKBUILD +++ b/testing/py-nikola/APKBUILD @@ -30,13 +30,13 @@ prepare() { build() { cd "$_builddir" - python setup.py build || return 1 -# python setup.py test || return 1 + python2 setup.py build || return 1 +# python2 setup.py test || 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="a7285f0d78b9e727a405fba379fde206 nikola-7.7.4.tar.gz" |