Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 Jan 2019 17:35:26 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r491740 - in head: devel/cvs2html misc/compat8x misc/compat9x net/rdist6
Message-ID:  <201901311735.x0VHZQ2T023580@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Thu Jan 31 17:35:26 2019
New Revision: 491740
URL: https://svnweb.freebsd.org/changeset/ports/491740

Log:
  Do not override RUN_DEPENDS after bsd.port.pre.mk

Modified:
  head/devel/cvs2html/Makefile
  head/misc/compat8x/Makefile
  head/misc/compat9x/Makefile
  head/net/rdist6/Makefile

Modified: head/devel/cvs2html/Makefile
==============================================================================
--- head/devel/cvs2html/Makefile	Thu Jan 31 17:28:51 2019	(r491739)
+++ head/devel/cvs2html/Makefile	Thu Jan 31 17:35:26 2019	(r491740)
@@ -26,7 +26,7 @@ SHEBANG_FILES=	${PORTNAME}
 
 .if ${OPSYS} == FreeBSD
 # DragonFly has CVS in base and devel/cvs doesn't build there
-RUN_DEPENDS=	cvs:devel/cvs
+RUN_DEPENDS+=	cvs:devel/cvs
 .endif
 
 do-extract:

Modified: head/misc/compat8x/Makefile
==============================================================================
--- head/misc/compat8x/Makefile	Thu Jan 31 17:28:51 2019	(r491739)
+++ head/misc/compat8x/Makefile	Thu Jan 31 17:35:26 2019	(r491740)
@@ -21,7 +21,7 @@ USE_LDCONFIG=	${TARGET_DIR}
 .include <bsd.port.pre.mk>
 
 .if ${OSVERSION} >= 1000000
-RUN_DEPENDS=	compat9x-${ARCH}>=0:misc/compat9x
+RUN_DEPENDS+=	compat9x-${ARCH}>=0:misc/compat9x
 .endif
 
 .if ${ARCH} == amd64

Modified: head/misc/compat9x/Makefile
==============================================================================
--- head/misc/compat9x/Makefile	Thu Jan 31 17:28:51 2019	(r491739)
+++ head/misc/compat9x/Makefile	Thu Jan 31 17:35:26 2019	(r491740)
@@ -21,7 +21,7 @@ USE_LDCONFIG=	${TARGET_DIR}
 .include <bsd.port.pre.mk>
 
 .if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000
-RUN_DEPENDS=	compat10x-${ARCH}>=0:misc/compat10x
+RUN_DEPENDS+=	compat10x-${ARCH}>=0:misc/compat10x
 .endif
 
 .if ${ARCH} == amd64

Modified: head/net/rdist6/Makefile
==============================================================================
--- head/net/rdist6/Makefile	Thu Jan 31 17:28:51 2019	(r491739)
+++ head/net/rdist6/Makefile	Thu Jan 31 17:35:26 2019	(r491740)
@@ -22,7 +22,7 @@ PLIST_SUB=	RDIST_NAME=${RDIST_NAME}
 .include <bsd.port.pre.mk>
 
 .if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200050
-RUN_DEPENDS=	rsh:net/bsdrcmds
+RUN_DEPENDS+=	rsh:net/bsdrcmds
 .endif
 
 post-install:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901311735.x0VHZQ2T023580>