svn commit: r301349 - head/net-mgmt/p5-GRNOC-TL1

Steve Wills swills at FreeBSD.org
Sun Jul 22 20:48:23 UTC 2012


Author: swills
Date: Sun Jul 22 20:48:23 2012
New Revision: 301349
URL: http://svn.freebsd.org/changeset/ports/301349

Log:
  - Avoid += without preceeding definition
  
  PR:		ports/169136
  Approved by:	maintainer timeout (5u623l20 at gmail.com, >2 weeks)

Modified:
  head/net-mgmt/p5-GRNOC-TL1/Makefile   (contents, props changed)

Modified: head/net-mgmt/p5-GRNOC-TL1/Makefile
==============================================================================
--- head/net-mgmt/p5-GRNOC-TL1/Makefile	Sun Jul 22 20:35:35 2012	(r301348)
+++ head/net-mgmt/p5-GRNOC-TL1/Makefile	Sun Jul 22 20:48:23 2012	(r301349)
@@ -16,8 +16,8 @@ COMMENT=	Module supports retrieval of da
 
 PERL_CONFIGURE=	yes
 
-BUILD_DEPENDS+=	p5-Date-Calc>=0:${PORTSDIR}/devel/p5-Date-Calc \
+BUILD_DEPENDS=	p5-Date-Calc>=0:${PORTSDIR}/devel/p5-Date-Calc \
 		p5-Net-Telnet>=0:${PORTSDIR}/net/p5-Net-Telnet
-RUN_DEPENDS+=	${BUILD_DEPENDS}
+RUN_DEPENDS:=	${BUILD_DEPENDS}
 
 .include <bsd.port.mk>



More information about the svn-ports-all mailing list