aboutsummaryrefslogtreecommitdiff
path: root/databases/postgresql-plruby
diff options
context:
space:
mode:
authorPalle Girgensohn <girgen@FreeBSD.org>2006-12-08 10:59:53 +0000
committerPalle Girgensohn <girgen@FreeBSD.org>2006-12-08 10:59:53 +0000
commit924cdc8b1f197ae45978d87f838a86997e5e6cd5 (patch)
treedff3b72bfb96d7ed4db12fb2b21b639de422d811 /databases/postgresql-plruby
parent71381fc9b28134dfc11f71b39a984e5da3c34a03 (diff)
downloadports-924cdc8b1f197ae45978d87f838a86997e5e6cd5.tar.gz
ports-924cdc8b1f197ae45978d87f838a86997e5e6cd5.zip
Notes
Diffstat (limited to 'databases/postgresql-plruby')
-rw-r--r--databases/postgresql-plruby/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/postgresql-plruby/Makefile b/databases/postgresql-plruby/Makefile
index 87ad5183b52d..1d77059ab7df 100644
--- a/databases/postgresql-plruby/Makefile
+++ b/databases/postgresql-plruby/Makefile
@@ -61,7 +61,7 @@ post-build:
# Setting/finding PostgreSQL version we want.
.if exists(${LOCALBASE}/bin/postmaster)
PGSQL_VER!= ${LOCALBASE}/bin/postmaster -V | \
- ${SED} -n 's/postmaster.*PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\..*/\1\2/p'
+ ${SED} -n 's/.*PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\..*/\1\2/p'
.elif exists(${LOCALBASE}/bin/pg_config)
PGSQL_VER!= ${LOCALBASE}/bin/pg_config --version | ${SED} -n 's/PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\..*/\1\2/p'
.else