aboutsummaryrefslogtreecommitdiffstats
path: root/databases
diff options
context:
space:
mode:
authorosa <osa@FreeBSD.org>2003-09-04 17:29:43 +0800
committerosa <osa@FreeBSD.org>2003-09-04 17:29:43 +0800
commit45cebd30b93d18deb16a0397fa7dade2866ff1ba (patch)
tree9c76b4cb2a20607409425f8e038482f64060887f /databases
parente273a47e76ac37608ce4d781231ee21b3cc8991b (diff)
downloadfreebsd-ports-gnome-45cebd30b93d18deb16a0397fa7dade2866ff1ba.tar.gz
freebsd-ports-gnome-45cebd30b93d18deb16a0397fa7dade2866ff1ba.tar.zst
freebsd-ports-gnome-45cebd30b93d18deb16a0397fa7dade2866ff1ba.zip
Use another way for PortgreSQL slave ports (make without -C),
because much more people still use old versions of make. For committers: please use the same way for following PRs: 56345-56350. Spotted by: Dan Langille <dan@langille.org> via FreshPorts Submitted by: Palle Girgensohn <girgen@pingpong.net> (maintainer)
Diffstat (limited to 'databases')
-rw-r--r--databases/postgresql-contrib/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/postgresql-contrib/Makefile b/databases/postgresql-contrib/Makefile
index 8dd1e4283407..94ad42a8dcbe 100644
--- a/databases/postgresql-contrib/Makefile
+++ b/databases/postgresql-contrib/Makefile
@@ -7,13 +7,13 @@
POSTGRESQL_PORT?= databases/postgresql7
PORTNAME= postgresql
-PORTVERSION!= ${MAKE} -C ${.CURDIR}/../../${POSTGRESQL_PORT} -V PORTVERSION
+PORTVERSION!= cd ${.CURDIR}/../../${POSTGRESQL_PORT} && ${MAKE} -V PORTVERSION
PORTREVISION?= 1
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_PGSQL}
-MASTER_SITE_SUBDIR!= ${MAKE} -C ${.CURDIR}/../../${POSTGRESQL_PORT} -V MASTER_SITE_SUBDIR
+MASTER_SITE_SUBDIR!= cd ${.CURDIR}/../../${POSTGRESQL_PORT} && ${MAKE} -V MASTER_SITE_SUBDIR
PKGNAMESUFFIX= -contrib
-DISTFILES!= ${MAKE} -C ${.CURDIR}/../../${POSTGRESQL_PORT} -V DISTFILES
+DISTFILES!= cd ${.CURDIR}/../../${POSTGRESQL_PORT} && ${MAKE} -V DISTFILES
DIST_SUBDIR= postgresql
MAINTAINER= girgen@pingpong.net