diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-06-02 15:19:35 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-06-02 15:19:35 +0000 |
commit | d075879097109f0bf9cff82772a16fc437e2ae47 (patch) | |
tree | 7c40590dd6355ca8f786d1ce048f90c4c79b9f67 /testing | |
parent | 072ae34f42a5e333cccc6560afa1dc2abc0a7cdb (diff) | |
download | aports-d075879097109f0bf9cff82772a16fc437e2ae47.tar.bz2 aports-d075879097109f0bf9cff82772a16fc437e2ae47.tar.xz |
testing/py-sqlite: minor build fix
Diffstat (limited to 'testing')
-rw-r--r-- | testing/py-sqlite/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/py-sqlite/APKBUILD b/testing/py-sqlite/APKBUILD index e5b87bd6c9..a0ae27156a 100644 --- a/testing/py-sqlite/APKBUILD +++ b/testing/py-sqlite/APKBUILD @@ -8,14 +8,14 @@ pkgdesc="A Python DB-API 2.0 interface for the SQLite embedded relational databa url="http://code.google.com/p/pysqlite/" license="MIT" depends="python sqlite" -makedepends="sqlite-dev" +makedepends="sqlite-dev python-dev" install= source="http://pysqlite.googlecode.com/files/${_realname}-${pkgver}.tar.gz" _builddir="$srcdir"/$_realname-$pkgver build() { - exit 0 + return 0 } package() { |