diff options
author | grant <grant> | 2004-06-12 04:01:45 +0000 |
---|---|---|
committer | grant <grant> | 2004-06-12 04:01:45 +0000 |
commit | 622a35b43ca6b957fcef4eb2d136cd98fb014496 (patch) | |
tree | 073a3ab6e8cc65371e449001457ed1d3a3bcbd99 /devel | |
parent | a3d5a65338b93234fb135acf0d6966d2470a4e9a (diff) | |
download | pkgsrc-622a35b43ca6b957fcef4eb2d136cd98fb014496.tar.gz |
swap order of depends so that perl>=5.8.3 is preferred over
p5-Test-Harness.
the old way:
{p5-Test-Harness-[0-9]*,perl{,-thread}>=5.8.3}:../../devel/p5-Test-Harness
is normally ok because if either is installed the dependency is
satisfied. however, in a bulk build, every package which uses this
DEPENDS is automatically failed because p5-Test-Harness is preferred
but it conflicts with perl>=5.8.3 (they both install bin/prove and
prove.1).
this way, perl is preferred and the dependency should be satisfied
correctly in bulk builds.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-Test-Harness/depends.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/p5-Test-Harness/depends.mk b/devel/p5-Test-Harness/depends.mk index f4ae0211e79..aa3c0664759 100644 --- a/devel/p5-Test-Harness/depends.mk +++ b/devel/p5-Test-Harness/depends.mk @@ -1,5 +1,5 @@ -# $NetBSD: depends.mk,v 1.1 2004/05/08 04:05:58 grant Exp $ +# $NetBSD: depends.mk,v 1.2 2004/06/12 04:01:45 grant Exp $ # perl58>=5.8.3 includes Test::Harness, so allow it to satisfy this # dependency. -DEPENDS+= {p5-Test-Harness-[0-9]*,perl{,-thread}>=5.8.3}:../../devel/p5-Test-Harness +DEPENDS+= {perl{,-thread}>=5.8.3,p5-Test-Harness-[0-9]*}:../../devel/p5-Test-Harness |