Skip to content

Commit

Permalink
ports-mgmt/portlint: Update to 2.22
Browse files Browse the repository at this point in the history
This fixes some spurious errors by concatenating continued lines in the
Makefile.  The downside of this is that line numbers will get more
askew.  I thought I'd get some time to imrove this, but didn't.  And
this fix is important to get out now.

PR:		275075
  • Loading branch information
xorrkaz committed Jan 8, 2024
1 parent 5f0d96d commit 7c58302
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ports-mgmt/portlint/Makefile
@@ -1,5 +1,5 @@
PORTNAME= portlint
PORTVERSION= 2.21.0
PORTVERSION= 2.22.0
CATEGORIES= ports-mgmt
MASTER_SITES= # none
DISTFILES= # none
Expand Down
7 changes: 6 additions & 1 deletion ports-mgmt/portlint/src/portlint.pl
Expand Up @@ -51,7 +51,7 @@

# version variables
my $major = 2;
my $minor = 21;
my $minor = 22;
my $micro = 0;

# default setting - for FreeBSD
Expand Down Expand Up @@ -1406,6 +1406,11 @@ sub checkmakefile {
}
}
$rawwhole .= $_;
if (/\\$/) {
# Concat continued lines.
chomp $rawwhole;
chop $rawwhole;
}
}
close(IN);

Expand Down

0 comments on commit 7c58302

Please sign in to comment.