summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorMichael Haro <mharo@FreeBSD.org>2000-11-10 07:20:43 +0000
committerMichael Haro <mharo@FreeBSD.org>2000-11-10 07:20:43 +0000
commit2beea6cfcb0433f464d8e0c047047c6201a05726 (patch)
tree85e47f6e583482c8813f9a23d292cac7bdaf41fa /devel
parentFixing "X manpage" errors with XFree86-4 (diff)
fix a bug, $i = -> $i eq
Submitted by: fenner
Notes
Notes: svn path=/head/; revision=34954
Diffstat (limited to 'devel')
-rw-r--r--devel/portlint/src/portlint.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/portlint/src/portlint.pl b/devel/portlint/src/portlint.pl
index ea795efdbb69..ae8e4f662d4a 100644
--- a/devel/portlint/src/portlint.pl
+++ b/devel/portlint/src/portlint.pl
@@ -369,7 +369,7 @@ foreach my $i (<patches/patch-??>) {
foreach my $i (@checker) {
print "OK: checking $i.\n";
if (! -f "$i") {
- &perror("FATAL: no $i in \"$portdir\".") unless $i = $makevar{MD5_FILE} && $makevar{DISTFILES} eq "";
+ &perror("FATAL: no $i in \"$portdir\".") unless $i eq $makevar{MD5_FILE} && $makevar{DISTFILES} eq "";
} else {
my $proc = $checker{$i};
&$proc($i) || &perror("Cannot open the file $i\n");