diff options
author | wiz <wiz@pkgsrc.org> | 2014-01-25 08:45:38 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-01-25 08:45:38 +0000 |
commit | d6843234e7ed454108c3cd5d8743672f5544aa47 (patch) | |
tree | 306541a53ed81a240c7a33df7f59ee3423c74906 /databases | |
parent | f2a68e6d25bd939e1283c3e77773483278795bc8 (diff) | |
download | pkgsrc-d6843234e7ed454108c3cd5d8743672f5544aa47.tar.gz |
Use .PHONY correctly.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/py-sqlite2/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/databases/py-sqlite2/Makefile b/databases/py-sqlite2/Makefile index 11163c3669c..cb1b7f751bb 100644 --- a/databases/py-sqlite2/Makefile +++ b/databases/py-sqlite2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 2013/10/19 09:07:01 adam Exp $ +# $NetBSD: Makefile,v 1.33 2014/01/25 08:45:38 wiz Exp $ DISTNAME= pysqlite-2.6.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/pysqlite/sqlite2/} @@ -11,10 +11,12 @@ HOMEPAGE= http://pysqlite.googlecode.com/ COMMENT= SQLite database adapter for Python LICENSE= mit -.include "../../lang/python/distutils.mk" +PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of 2.6.3 -do-postinstall-test: .PHONY +.PHONY: do-postinstall-test +do-postinstall-test: cd ${WRKDIR} && ${PYTHONBIN} -c "from pysqlite2 import test;test.test()" +.include "../../lang/python/distutils.mk" .include "../../databases/sqlite3/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |