diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-04-16 19:01:15 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-04-16 19:01:15 +0000 |
commit | 211a60e7d9d62a5f39711d794a7d65a5d78bb56f (patch) | |
tree | 85bc0760272b5a666f56e852844b9becbf7e4225 /devel/portlint | |
parent | f8fc8209a697b6e315cd1bf06b91d326e581609d (diff) | |
download | ports-211a60e7d9d62a5f39711d794a7d65a5d78bb56f.tar.gz ports-211a60e7d9d62a5f39711d794a7d65a5d78bb56f.zip |
Notes
Diffstat (limited to 'devel/portlint')
-rw-r--r-- | devel/portlint/Makefile | 1 | ||||
-rw-r--r-- | devel/portlint/src/portlint.pl | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/devel/portlint/Makefile b/devel/portlint/Makefile index 6757d65d1b20..973e2827f9f0 100644 --- a/devel/portlint/Makefile +++ b/devel/portlint/Makefile @@ -9,6 +9,7 @@ PORTNAME= portlint PORTVERSION= 2.7.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= # none DISTFILES= # none diff --git a/devel/portlint/src/portlint.pl b/devel/portlint/src/portlint.pl index e6d6c7d4b5e5..99b2779d840d 100644 --- a/devel/portlint/src/portlint.pl +++ b/devel/portlint/src/portlint.pl @@ -17,7 +17,7 @@ # OpenBSD and NetBSD will be accepted. # # $FreeBSD$ -# $Id: portlint.pl,v 1.75 2005/04/13 03:18:22 marcus Exp $ +# $Id: portlint.pl,v 1.76 2005/04/15 04:53:34 marcus Exp $ # use vars qw/ $opt_a $opt_A $opt_b $opt_C $opt_c $opt_h $opt_t $opt_v $opt_M $opt_N $opt_B $opt_V /; @@ -329,7 +329,7 @@ if ($committer) { &perror("Warning: $fullname: dotfiles are not preferred. ". "If this file is a dotfile to be installed as an example, ". "consider importing it as \"dot$_\"."); - } elsif (/[^-.a-zA-Z0-9_]/) { + } elsif (/[^-.a-zA-Z0-9_\+]/) { &perror("Warning: $fullname: only use characters ". "[-_.a-zA-Z0-9] for patch or script names."); } elsif (/\.(orig|rej|bak)$/ || /~$/ || /^\#/) { |