diff options
author | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2001-02-17 12:20:32 +0000 |
---|---|---|
committer | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2001-02-17 12:20:32 +0000 |
commit | afa075e6d87d84f65bb5c77105903dc2d34bf293 (patch) | |
tree | 1054002132dcdfc5093c6294dffcd65fdcdb6287 /devel/portlint | |
parent | ea6fe5d7398b034f058bf88fb36ddca4f99e2d75 (diff) |
Notes
Diffstat (limited to 'devel/portlint')
-rw-r--r-- | devel/portlint/Makefile | 2 | ||||
-rw-r--r-- | devel/portlint/src/portlint.pl | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/devel/portlint/Makefile b/devel/portlint/Makefile index 909a2aa30f28..fc78e9dc8fb6 100644 --- a/devel/portlint/Makefile +++ b/devel/portlint/Makefile @@ -8,7 +8,7 @@ # PORTNAME= portlint -PORTVERSION= 2.3 +PORTVERSION= 2.3.1 CATEGORIES= devel MASTER_SITES= # none DISTFILES= # none diff --git a/devel/portlint/src/portlint.pl b/devel/portlint/src/portlint.pl index 72d6da62100b..a72f344f83be 100644 --- a/devel/portlint/src/portlint.pl +++ b/devel/portlint/src/portlint.pl @@ -98,7 +98,7 @@ sub version { } -getopts('abchtvBM:N:V'); +getopts('abchtvB:M:NV'); &usage if $opt_h; &version if $opt_V; @@ -275,7 +275,7 @@ foreach my $i (@checker) { } else { my $proc = $checker{$i}; &$proc($i) || &perror("Cannot open the file $i\n"); - if ($i !~ /^files\/patch-/) { + if ($i !~ m@/files/patch-@) { &checklastline($i) || &perror("Cannot open the file $i\n"); } |