diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-07-03 04:52:12 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-07-03 04:52:12 +0000 |
commit | edd625d2fd6e3e50afea3f15ebaffe7520fac6ea (patch) | |
tree | 356e5db5a7a03f58cdd9891c386ecbddedab3814 /ports-mgmt/portlint | |
parent | d47c1e1b9afe02d7e449ff29f93f6822d274cbd0 (diff) | |
download | ports-edd625d2fd6e3e50afea3f15ebaffe7520fac6ea.tar.gz ports-edd625d2fd6e3e50afea3f15ebaffe7520fac6ea.zip |
Notes
Diffstat (limited to 'ports-mgmt/portlint')
-rw-r--r-- | ports-mgmt/portlint/Makefile | 1 | ||||
-rw-r--r-- | ports-mgmt/portlint/src/portlint.pl | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/ports-mgmt/portlint/Makefile b/ports-mgmt/portlint/Makefile index d562f8d2ced6..64d1b08a7a6e 100644 --- a/ports-mgmt/portlint/Makefile +++ b/ports-mgmt/portlint/Makefile @@ -9,6 +9,7 @@ PORTNAME= portlint PORTVERSION= 2.7.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= # none DISTFILES= # none diff --git a/ports-mgmt/portlint/src/portlint.pl b/ports-mgmt/portlint/src/portlint.pl index a4938121a8e5..6f533a254a37 100644 --- a/ports-mgmt/portlint/src/portlint.pl +++ b/ports-mgmt/portlint/src/portlint.pl @@ -17,7 +17,7 @@ # OpenBSD and NetBSD will be accepted. # # $FreeBSD$ -# $MCom: portlint/portlint.pl,v 1.78 2005/07/02 20:31:33 marcus Exp $ +# $MCom: portlint/portlint.pl,v 1.79 2005/07/03 04:49:07 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 /; @@ -1115,6 +1115,7 @@ sub checkmakefile { my $lineno = &linenumber($`) + 1; &perror("FATAL: $file [$lineno]: option WITH(OUT)_$1 is used before ". "including bsd.port.pre.mk.") + if (scalar(@oopt) && $lineno < $pre_mk_line); } foreach my $i (@oopt) { if (!grep(/^$i$/, @mopt)) { |