summaryrefslogtreecommitdiff
path: root/databases/p5-DBD-postgresql/Makefile
diff options
context:
space:
mode:
authorrillig <rillig>2005-12-05 20:49:47 +0000
committerrillig <rillig>2005-12-05 20:49:47 +0000
commit472dafdd2e1560bc21a20b89efd58a911dc44409 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /databases/p5-DBD-postgresql/Makefile
parent55a30558d8942bf85417fab3ed26bec7a7c3aae6 (diff)
downloadpkgsrc-472dafdd2e1560bc21a20b89efd58a911dc44409.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/Makefile')
-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"