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 | 5ec134d67dbba7a354689af359fb4dd92bc8cbec (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /textproc/postgresql-autodoc | |
parent | 9d13f62cc158ce4d29412c1798882c83849d448b (diff) | |
download | pkgsrc-5ec134d67dbba7a354689af359fb4dd92bc8cbec.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 'textproc/postgresql-autodoc')
-rw-r--r-- | textproc/postgresql-autodoc/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/textproc/postgresql-autodoc/Makefile b/textproc/postgresql-autodoc/Makefile index 8c5fff560ff..4929c3a638b 100644 --- a/textproc/postgresql-autodoc/Makefile +++ b/textproc/postgresql-autodoc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2005/07/16 01:19:24 jlam Exp $ +# $NetBSD: Makefile,v 1.19 2005/12/05 20:51:07 rillig Exp $ # DISTNAME= postgresql_autodoc-1.24 @@ -10,13 +10,13 @@ MAINTAINER= recht@NetBSD.org HOMEPAGE= http://www.rbt.ca/autodoc/ COMMENT= Generate HTML, DOT, and XML description of database structure -DEPENDS= p5-DBD-postgresql-[0-9]*:../../databases/p5-DBD-postgresql +DEPENDS+= p5-DBD-postgresql-[0-9]*:../../databases/p5-DBD-postgresql DEPENDS+= p5-HTML-Template-[0-9]*:../../www/p5-HTML-Template WRKSRC= ${WRKDIR}/postgresql_autodoc USE_TOOLS+= gmake perl:run GNU_CONFIGURE= yes -CONFIGURE_ARGS= --datadir=${PREFIX}/share/${PKGBASE} -CONFIGURE_ENV+= ac_cv_path_PERL=${PERL5} +CONFIGURE_ARGS+= --datadir=${PREFIX:Q}/share/${PKGBASE:Q} +CONFIGURE_ENV+= ac_cv_path_PERL=${PERL5:Q} .include "../../mk/bsd.pkg.mk" |