summaryrefslogtreecommitdiff
path: root/databases/p5-DBD-postgresql
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2005-12-05 20:49:47 +0000
committerrillig <rillig@pkgsrc.org>2005-12-05 20:49:47 +0000
commitb71a1d488b6b45e0a968a4c149990c25b6a09215 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /databases/p5-DBD-postgresql
parent624eed58928f83676fbd7ca01a5f6974bb2cce2a (diff)
downloadpkgsrc-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/p5-DBD-postgresql')
-rw-r--r--databases/p5-DBD-postgresql/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/p5-DBD-postgresql/Makefile b/databases/p5-DBD-postgresql/Makefile
index b05f69251ea..2569d3dcc53 100644
--- a/databases/p5-DBD-postgresql/Makefile
+++ b/databases/p5-DBD-postgresql/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.34 2005/08/06 06:19:06 jlam Exp $
+# $NetBSD: Makefile,v 1.35 2005/12/05 20:49:58 rillig Exp $
#
VER= 1.41
@@ -22,8 +22,8 @@ PGPREFIX= ${PREFIX}/${PGUSER}
POSTGRES_INCLUDE= ${PGSQL_PREFIX}/include/postgresql
POSTGRES_LIB= ${PGSQL_PREFIX}/lib
-MAKE_ENV+= POSTGRES_INCLUDE="${POSTGRES_INCLUDE}"
-MAKE_ENV+= POSTGRES_LIB="${POSTGRES_LIB}"
+MAKE_ENV+= POSTGRES_INCLUDE=${POSTGRES_INCLUDE:Q}
+MAKE_ENV+= POSTGRES_LIB=${POSTGRES_LIB:Q}
.include "../../databases/p5-DBI/buildlink3.mk"
.include "../../lang/perl5/module.mk"