diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 23:55:01 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 23:55:01 +0000 |
commit | 579e97796954edc2469fac176e855589e1dc2997 (patch) | |
tree | 1390f4897127f87b9dc78eb04234494436dbf1a4 /databases/postgresql80 | |
parent | a86447cb0763e94327a0380243bb3a2cc0ecbb68 (diff) | |
download | pkgsrc-579e97796954edc2469fac176e855589e1dc2997.tar.gz |
Ran "pkglint --autofix", which corrected some of the quoting issues in
CONFIGURE_ARGS.
Diffstat (limited to 'databases/postgresql80')
-rw-r--r-- | databases/postgresql80/Makefile.common | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/databases/postgresql80/Makefile.common b/databases/postgresql80/Makefile.common index e5b3544d875..c40705c94c3 100644 --- a/databases/postgresql80/Makefile.common +++ b/databases/postgresql80/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.10 2005/12/05 20:50:00 rillig Exp $ +# $NetBSD: Makefile.common,v 1.11 2005/12/05 23:55:05 rillig Exp $ # # This Makefile fragment is included by all PostgreSQL packages built from # the main sources of the PostgreSQL distribution except jdbc-postgresql. @@ -73,9 +73,9 @@ PG_LOCALE_DIR= ${PG_PREFIX}/${PKGLOCALEDIR}/locale PG_ETC_DIR= ${PKG_SYSCONFDIR:S/^${PREFIX}\//${PG_PREFIX}\//} GNU_CONFIGURE_PREFIX= ${PG_PREFIX} -CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR} -CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR} -CONFIGURE_ARGS+= --with-docdir=${PG_DOC_DIR} +CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR:Q} +CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR:Q} +CONFIGURE_ARGS+= --with-docdir=${PG_DOC_DIR:Q} CONFIGURE_ARGS+= --with-template=${PGSQL_TEMPLATE.${OPSYS}} CONFIGURE_ARGS+= --without-readline CONFIGURE_ARGS+= --without-zlib |