diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2006-12-04 08:55:33 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2006-12-04 08:55:33 +0000 |
commit | 994aea3aba313831401bd87338a3d56db46204c0 (patch) | |
tree | fed22426fa0ef296fdcaba33efb3419cb0ae5081 /databases | |
parent | 01d12a2cee3280337fa2b9ffa797dd565359dd97 (diff) |
- Fix options: OPTIONFILES should be specified before pre.mk
PR: ports/106296
Submitted by: rafan
Approved by: Choe, Cheng-Dae <whitekid@gmail.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=178810
Diffstat (limited to 'databases')
-rw-r--r-- | databases/py-sqlobject/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/py-sqlobject/Makefile b/databases/py-sqlobject/Makefile index 9e9977a8dc35..9d0d8140d04e 100644 --- a/databases/py-sqlobject/Makefile +++ b/databases/py-sqlobject/Makefile @@ -28,11 +28,11 @@ OPTIONS= MYSQL "MySQL supports" off \ PGSQL "PostgreSQL Supports" off \ SQLITE "SQLite Supports" off -.include <bsd.port.pre.mk> - # bypass infrastructure bug OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options +.include <bsd.port.pre.mk> + RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/formencode/__init__.py:${PORTSDIR}/www/py-formencode .if defined(WITH_MYSQL) |