diff options
author | Timo Teräs <timo.teras@iki.fi> | 2016-04-05 14:17:20 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-04-05 14:17:20 +0300 |
commit | d625d78fbc97665e3d7185026bf9691a0d0ba62e (patch) | |
tree | b15e69616e6a2a807de1e3ff2529b6daef3bedf8 | |
parent | a2acbeb33fea22a017d18b629348b840cd9cc4c2 (diff) | |
download | aports-d625d78fbc97665e3d7185026bf9691a0d0ba62e.tar.bz2 aports-d625d78fbc97665e3d7185026bf9691a0d0ba62e.tar.xz |
main/py-boto: fix builddir for implicit prepare
-rw-r--r-- | testing/py-boto/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/py-boto/APKBUILD b/testing/py-boto/APKBUILD index 511a870f7c..1e5fc1bed1 100644 --- a/testing/py-boto/APKBUILD +++ b/testing/py-boto/APKBUILD @@ -15,15 +15,15 @@ install= subpackages="$pkgname-tools" source="$_pkgname-$pkgver.tar.gz::https://github.com/boto/$_pkgname/archive/$pkgver.tar.gz" -_builddir="$srcdir"/$_pkgname-$pkgver +builddir="$srcdir"/$_pkgname-$pkgver build() { - cd "$_builddir" + cd "$builddir" python setup.py build || return 1 } package() { - cd "$_builddir" + cd "$builddir" python setup.py install --prefix=/usr --root="$pkgdir" || return 1 } |