diff options
author | lippe <lippe@FreeBSD.org> | 2013-03-06 03:30:28 +0800 |
---|---|---|
committer | lippe <lippe@FreeBSD.org> | 2013-03-06 03:30:28 +0800 |
commit | a1e98ea022367f169fe0f4db8cfdad5d02e98c82 (patch) | |
tree | 4a2c7c24c1b546034f87877c7928944ed94cb531 /databases | |
parent | 4327d66e98cbac17dcef27d9bfcb08f813f9aa22 (diff) | |
download | freebsd-ports-gnome-a1e98ea022367f169fe0f4db8cfdad5d02e98c82.tar.gz freebsd-ports-gnome-a1e98ea022367f169fe0f4db8cfdad5d02e98c82.tar.zst freebsd-ports-gnome-a1e98ea022367f169fe0f4db8cfdad5d02e98c82.zip |
- Fix sqlite3.so location on RUN_DEPENDS.
Reported by: culot@
Diffstat (limited to 'databases')
-rw-r--r-- | databases/py-sqlalchemy/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/databases/py-sqlalchemy/Makefile b/databases/py-sqlalchemy/Makefile index d38b84a4fa8d..bb0cbf547a70 100644 --- a/databases/py-sqlalchemy/Makefile +++ b/databases/py-sqlalchemy/Makefile @@ -3,6 +3,7 @@ PORTNAME= sqlalchemy PORTVERSION= 0.7.9 +PORTREVISION= 1 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -76,7 +77,7 @@ RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}psycopg2>=2.0.8:${PORTSDIR}/databases/py-ps .endif .if ${PORT_OPTIONS:MSQLITE} -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 +RUN_DEPENDS+= %%PYTHON_LIBDIR%%/lib-dynload/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 .endif .if ${PORT_OPTIONS:MSYBASE} |