diff options
author | dholland <dholland@pkgsrc.org> | 2015-12-30 04:18:13 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2015-12-30 04:18:13 +0000 |
commit | 805f1a99a31000af5b4c0d9e0a3835e86f8f9cdf (patch) | |
tree | d6b13263f1d889b6c36da8151b4474301e7b9d37 /pkgtools/pkglint4/files | |
parent | b674bca786b4a914fe0809f981714783967fa6df (diff) | |
download | pkgsrc-805f1a99a31000af5b4c0d9e0a3835e86f8f9cdf.tar.gz |
Add Bitrig and MirBSD to the list of oses.
Diffstat (limited to 'pkgtools/pkglint4/files')
-rw-r--r-- | pkgtools/pkglint4/files/pkglint.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/pkglint4/files/pkglint.pl b/pkgtools/pkglint4/files/pkglint.pl index 94cdd399323..72b23a216d2 100644 --- a/pkgtools/pkglint4/files/pkglint.pl +++ b/pkgtools/pkglint4/files/pkglint.pl @@ -1,5 +1,5 @@ #! @PERL@ -# $NetBSD: pkglint.pl,v 1.2 2015/12/10 08:23:15 wiz Exp $ +# $NetBSD: pkglint.pl,v 1.3 2015/12/30 04:18:14 dholland Exp $ # # pkglint - static analyzer and checker for pkgsrc packages @@ -3019,7 +3019,7 @@ sub checkline_mk_vartype_basic($$$$$$$$) { if ($value =~ m"^(\w+)-(\w+)$") { my ($opsys, $arch) = ($1, $2); - if ($opsys !~ m"^(?:bsdos|cygwin|darwin|dragonfly|freebsd|haiku|hpux|interix|irix|linux|netbsd|openbsd|osf1|sunos|solaris)$") { + if ($opsys !~ m"^(?:bitrig|bsdos|cygwin|darwin|dragonfly|freebsd|haiku|hpux|interix|irix|linux|mirbsd|netbsd|openbsd|osf1|sunos|solaris)$") { $line->log_warning("Unknown operating system: ${opsys}"); } # no check for $os_version |