summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2005-05-12 06:04:09 +0000
committerjlam <jlam@pkgsrc.org>2005-05-12 06:04:09 +0000
commit7a7c23b6bc5ea377ba702a21ac54701ff11f0c05 (patch)
treeb279b32f3338e0719428f53bf26fef937f5c177a /devel
parenta136d7cc681dc220b402ea608322187f6ae274ea (diff)
downloadpkgsrc-7a7c23b6bc5ea377ba702a21ac54701ff11f0c05.tar.gz
Fix test for whether PERL5_PKGSRCDIR is defined -- there shouldn't be
${...} around PERL5_PKGSRCDIR.
Diffstat (limited to 'devel')
-rw-r--r--devel/p5-Test-Harness/depends.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/p5-Test-Harness/depends.mk b/devel/p5-Test-Harness/depends.mk
index da596cac621..01ce91d7d05 100644
--- a/devel/p5-Test-Harness/depends.mk
+++ b/devel/p5-Test-Harness/depends.mk
@@ -1,4 +1,4 @@
-# $NetBSD: depends.mk,v 1.3 2004/07/13 22:01:03 kristerw Exp $
+# $NetBSD: depends.mk,v 1.4 2005/05/12 06:04:09 jlam Exp $
.include "../../mk/bsd.prefs.mk"
@@ -15,6 +15,6 @@
# perl will be installed, so the DEPENDS line is not needed...
# This hack should be removed when the bulk-build dependency-
# tracking has been fixed.
-.if exists(${PERL5}) || defined(${PERL5_PKGSRCDIR})
+.if exists(${PERL5}) || defined(PERL5_PKGSRCDIR)
DEPENDS+= {perl{,-thread}>=5.8.3,p5-Test-Harness-[0-9]*}:../../devel/p5-Test-Harness
.endif