diff options
author | eadler <eadler@FreeBSD.org> | 2014-07-01 15:04:47 +0800 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2014-07-01 15:04:47 +0800 |
commit | e26507284a73d3ef389f6ddfa28b4c45fff59b83 (patch) | |
tree | c9293086bc7f7c3d0b0e223b497e7465b5e0717b /net/p5-AddressBook | |
parent | 7cb4239610c8d554e9dff26814d97bd896aa53d0 (diff) | |
download | freebsd-ports-gnome-e26507284a73d3ef389f6ddfa28b4c45fff59b83.tar.gz freebsd-ports-gnome-e26507284a73d3ef389f6ddfa28b4c45fff59b83.tar.zst freebsd-ports-gnome-e26507284a73d3ef389f6ddfa28b4c45fff59b83.zip |
multiple: avoid RUN_DEPENDS=${BUILD_DEPENDS} anti-pattern
The ports infrastructure may insert additional content into the
BUILD_DEPENDS variable which is not supposed to be a run depend.
Approved by: portmgr (bapt)
Diffstat (limited to 'net/p5-AddressBook')
-rw-r--r-- | net/p5-AddressBook/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/p5-AddressBook/Makefile b/net/p5-AddressBook/Makefile index e4a46cbd3355..f11192654493 100644 --- a/net/p5-AddressBook/Makefile +++ b/net/p5-AddressBook/Makefile @@ -14,7 +14,8 @@ COMMENT= Perl5 module providing an LDAP addressbook interface BUILD_DEPENDS= p5-Date-Manip>=0:${PORTSDIR}/devel/p5-Date-Manip \ p5-XML-DOM>=0:${PORTSDIR}/textproc/p5-XML-DOM -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS= p5-Date-Manip>=0:${PORTSDIR}/devel/p5-Date-Manip \ + p5-XML-DOM>=0:${PORTSDIR}/textproc/p5-XML-DOM USES= perl5 USE_PERL5= configure |