From f6d56007b984e83ebda7162c99abc18d5bde982e Mon Sep 17 00:00:00 2001 From: Mathieu Arnold Date: Mon, 9 Jul 2018 08:40:17 +0000 Subject: Remove all := from BUILD_DEPENDS, here are never needed. While there, cleanup, and sort depends. When build and run dependencies are the same, there are three ways to avoid duplicating the list while not adding the framework added BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are: 1) use RUN_DEPENDS to set BUILD_DEPENDS: BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= foo:bar/baz 2) create another variable and use it: MY_DEPENDS= foo:bar/baz BUILD_DEPENDS= ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} 3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation: BUILD_DEPENDS= foo:bar/baz RUN_DEPENDS:= ${BUILD_DEPENDS} Sponsored by: Absolight --- misc/p5-Geo-Coder-Multiple/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'misc/p5-Geo-Coder-Multiple') diff --git a/misc/p5-Geo-Coder-Multiple/Makefile b/misc/p5-Geo-Coder-Multiple/Makefile index c4e1d06b602d..1153b5864ad4 100644 --- a/misc/p5-Geo-Coder-Multiple/Makefile +++ b/misc/p5-Geo-Coder-Multiple/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl module to tie together multiple Geo::Coder modules LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-List-Util-WeightedRoundRobin>=0:misc/p5-List-Util-WeightedRoundRobin -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure -- cgit v1.2.3