diff options
author | tv <tv@pkgsrc.org> | 1999-06-06 14:25:45 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 1999-06-06 14:25:45 +0000 |
commit | e1d75be620fed22fba681fa03a394faeec6f4584 (patch) | |
tree | fe0af941dc6e479e0c5dc8a29192bf120ee112f6 /databases | |
parent | 39229be225de306e4a6b3dbbcc1dd43dbf34f28c (diff) | |
download | pkgsrc-e1d75be620fed22fba681fa03a394faeec6f4584.tar.gz |
${...:M...} is not fully glob() compliant. Don't use {,} constructs.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/postgresql/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/postgresql/Makefile b/databases/postgresql/Makefile index 426189ccb8c..724cdbeff13 100644 --- a/databases/postgresql/Makefile +++ b/databases/postgresql/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 1999/06/04 16:55:12 drochner Exp $ +# $NetBSD: Makefile,v 1.34 1999/06/06 14:25:45 tv Exp $ # FreeBSD Id: Makefile,v 1.22 1997/12/24 01:21:37 alex Exp # @@ -36,7 +36,7 @@ CONFIGURE_ARGS= --prefix=${PREFIX}/${PGUSER} \ --with-includes=${PREFIX}/include \ --with-libs=${PREFIX}/lib \ --with-template=`${ECHO} ${OPSYS} | ${TR} '[A-Z]' '[a-z]'` -CONFIGURE_ENV+= CPPFLAGS="-I${PREFIX}/include/tcl8.0 -I${PREFIX}/include/tk8.0" +CPPFLAGS+= -I${LOCALBASE}/include/tcl8.0 -I${LOCALBASE}/include/tk8.0 INSTALL_TARGET= install install-man |