diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2018-10-06 13:06:42 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2018-10-06 13:06:42 +0000 |
commit | 9dff3523203bdda7ae358dcff3eb5a5ef3e54d33 (patch) | |
tree | 0721b637b4bcfc0a8ff2a945bdcb7e68f8993680 /net/p5-Net-ACME2 | |
parent | 2e4b740f2cc9a250b2c6056d8706e15d3bfa9763 (diff) |
Fix every instance of RUN_DEPENDS:=${BUILD_DEPENDS} in p5 ports, except
for where it resulted in a change in output from build-depends-list or
run-depends-list.
Approved by: portmgr (adamw)
Notes
Notes:
svn path=/head/; revision=481365
Diffstat (limited to 'net/p5-Net-ACME2')
-rw-r--r-- | net/p5-Net-ACME2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/p5-Net-ACME2/Makefile b/net/p5-Net-ACME2/Makefile index 5827872e7232..f873eff745c3 100644 --- a/net/p5-Net-ACME2/Makefile +++ b/net/p5-Net-ACME2/Makefile @@ -11,7 +11,8 @@ COMMENT= Interface to the Let's Encrypt ACMEv2 API LICENSE= ART20 -BUILD_DEPENDS= p5-Call-Context>=0.02:devel/p5-Call-Context \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Call-Context>=0.02:devel/p5-Call-Context \ p5-Crypt-Format>=0.06:security/p5-Crypt-Format \ p5-Crypt-Perl>=0.17:security/p5-Crypt-Perl \ p5-Crypt-OpenSSL-Bignum>=0.06:security/p5-Crypt-OpenSSL-Bignum \ @@ -27,7 +28,6 @@ BUILD_DEPENDS= p5-Call-Context>=0.02:devel/p5-Call-Context \ p5-Test-Exception>=0.43:devel/p5-Test-Exception \ p5-Test-NoWarnings>=1.04:devel/p5-Test-NoWarnings \ p5-X-Tiny>=0.13:devel/p5-X-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 |