diff options
author | swills <swills@FreeBSD.org> | 2012-07-23 04:48:23 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2012-07-23 04:48:23 +0800 |
commit | 9e4fad6f57b602959ffd31704acba24cb8ae505a (patch) | |
tree | 087a350837d76cb849a0a36d7fb7136d5f1b49c8 /net-mgmt | |
parent | efe11df9e5757c1dd56b2c7304c879f450534b1e (diff) | |
download | freebsd-ports-gnome-9e4fad6f57b602959ffd31704acba24cb8ae505a.tar.gz freebsd-ports-gnome-9e4fad6f57b602959ffd31704acba24cb8ae505a.tar.zst freebsd-ports-gnome-9e4fad6f57b602959ffd31704acba24cb8ae505a.zip |
- Avoid += without preceeding definition
PR: ports/169136
Approved by: maintainer timeout (5u623l20@gmail.com, >2 weeks)
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/p5-GRNOC-TL1/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-mgmt/p5-GRNOC-TL1/Makefile b/net-mgmt/p5-GRNOC-TL1/Makefile index 4e182ed5240e..260cb5427758 100644 --- a/net-mgmt/p5-GRNOC-TL1/Makefile +++ b/net-mgmt/p5-GRNOC-TL1/Makefile @@ -16,8 +16,8 @@ COMMENT= Module supports retrieval of data from different models of TL1 devices 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> |