diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
commit | b71a1d488b6b45e0a968a4c149990c25b6a09215 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /databases/postgresql73-pltcl | |
parent | 624eed58928f83676fbd7ca01a5f6974bb2cce2a (diff) | |
download | pkgsrc-b71a1d488b6b45e0a968a4c149990c25b6a09215.tar.gz |
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in
http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'databases/postgresql73-pltcl')
-rw-r--r-- | databases/postgresql73-pltcl/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/databases/postgresql73-pltcl/Makefile b/databases/postgresql73-pltcl/Makefile index d0b2f060053..6423c668d53 100644 --- a/databases/postgresql73-pltcl/Makefile +++ b/databases/postgresql73-pltcl/Makefile @@ -1,23 +1,22 @@ -# $NetBSD: Makefile,v 1.4 2005/04/11 21:45:14 tv Exp $ +# $NetBSD: Makefile,v 1.5 2005/12/05 20:49:59 rillig Exp $ PKGNAME= postgresql73-pltcl-${BASE_VERS} -PKGREVISION= # empty COMMENT= PL/Tcl procedural language for the PostgreSQL backend DEPENDS+= postgresql73-server>=${BASE_VERS}:../../databases/postgresql73-server -.include "../postgresql73/Makefile.common" +.include "../../databases/postgresql73/Makefile.common" CONFIGURE_ARGS+= --with-openssl=${SSLBASE} CONFIGURE_ARGS+= --with-tcl CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib" -CONFIGURE_ENV+= TCLSH="${TCLSH}" +CONFIGURE_ENV+= TCLSH=${TCLSH:Q} TCLSH= ${LOCALBASE}/bin/tclsh BUILD_DIRS= ${WRKSRC}/src/pl/tcl -.include "../postgresql73-lib/buildlink3.mk" +.include "../../databases/postgresql73-lib/buildlink3.mk" .include "../../lang/tcl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |