summaryrefslogtreecommitdiff
path: root/databases/py-PyGreSQL/files/Makefile
diff options
context:
space:
mode:
authorVanilla I. Shu <vanilla@FreeBSD.org>2001-04-21 11:43:12 +0000
committerVanilla I. Shu <vanilla@FreeBSD.org>2001-04-21 11:43:12 +0000
commit7b488295120bfec78abcdd29c219fd0995676c04 (patch)
tree24fccee7f220d354bab8169352f38ae33d6ecb56 /databases/py-PyGreSQL/files/Makefile
parentUpgrade to 7.1, change to new layout style. (diff)
Fix include directory for postgresql7.1's new layout.
Diffstat (limited to 'databases/py-PyGreSQL/files/Makefile')
-rw-r--r--databases/py-PyGreSQL/files/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/py-PyGreSQL/files/Makefile b/databases/py-PyGreSQL/files/Makefile
index b1aa7a29fc6c..3ebb172d0424 100644
--- a/databases/py-PyGreSQL/files/Makefile
+++ b/databases/py-PyGreSQL/files/Makefile
@@ -15,12 +15,12 @@ clean:
_pgmodule.so: pgmodule.o
${LD} -Bshareable -lc_r -L${PYTHON_LIBDIR}/config \
- -l${PYTHON_VERSION} -L${PREFIX}/pgsql/lib -lpq \
+ -l${PYTHON_VERSION} -L${PREFIX}/lib -lpq \
${.ALLSRC} -o ${.TARGET}
pgmodule.o: pgmodule.c
${CC} -c -I${PREFIX}/include/${PYTHON_VERSION} \
- -I${PREFIX}/pgsql/include ${.ALLSRC}
+ -I${PREFIX}/include/pgsql ${.ALLSRC}
.py.pyc:
${SETENV} PYTHONPATH=${.CURDIR} ${PYTHON} -c 'import ${.IMPSRC:.py=}'