diff options
author | adam <adam@pkgsrc.org> | 2011-04-22 08:10:23 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2011-04-22 08:10:23 +0000 |
commit | ca0e64c041c5dc69c7e52295b46d6aa18e6d445a (patch) | |
tree | b79b8b0a3bdc3e105f10ccd9139106f9b6845aaa /databases/postgresql90-client/Makefile | |
parent | 208e6da86aa33c0a174cd86be6e85637849d5a7f (diff) | |
download | pkgsrc-ca0e64c041c5dc69c7e52295b46d6aa18e6d445a.tar.gz |
Changes 9.0.4:
* fix build issues on HP-UX and Itanium
* update time zone files for recent time zone changes
* change SQLSTATE for Hot Standby warnings
* prevent bgwriter hang during recovery
* prevent recursive composite type creation
* disallow dropping tables whose triggers are still pending
* allow use of "replication" as a user name
* prevent a crash during GEQO planning
* improve join plans for tables with missing statistics
* fix error with SELECT FOR UPDATE in a subselect
* close PL/python array slice memory leak
* allow SSL connections for users with no home directory
* allow building PostgreSQL 9.0 with 64-bit MinGW
Diffstat (limited to 'databases/postgresql90-client/Makefile')
-rw-r--r-- | databases/postgresql90-client/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/databases/postgresql90-client/Makefile b/databases/postgresql90-client/Makefile index ea5be0d0168..90ee35b8574 100644 --- a/databases/postgresql90-client/Makefile +++ b/databases/postgresql90-client/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2011/02/09 08:48:17 adam Exp $ +# $NetBSD: Makefile,v 1.7 2011/04/22 08:10:23 adam Exp $ PKGNAME= ${DISTNAME:C/-/90-client-/} COMMENT= PostgreSQL database client programs @@ -89,8 +89,8 @@ post-wrapper: .endif post-install: - set -e; for file in ${PGXS_FILES}; do \ - ${INSTALL_DATA} ${WRKSRC}/$$file ${DEST_PGXS}/$$file; \ - done +.for file in ${PGXS_FILES} + ${INSTALL_DATA} ${WRKSRC}/${file} ${DEST_PGXS}/${file} +.endfor .include "../../mk/bsd.pkg.mk" |