diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2016-07-27 13:02:04 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2016-07-27 13:02:04 +0000 |
commit | a3d683574ca8d32d149ffd76d13a14b01c49ce00 (patch) | |
tree | 973e5130ee555d2b04a16bdc16523cf76e4728d0 /usr.sbin | |
parent | 9b53ce13dadc96d3d288e91e2e56e5e460289230 (diff) |
checking for firmware works better if I pass thru all options
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/PackingList.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PackingList.pm b/usr.sbin/pkg_add/OpenBSD/PackingList.pm index c0100f680c8..ee73a21b5de 100644 --- a/usr.sbin/pkg_add/OpenBSD/PackingList.pm +++ b/usr.sbin/pkg_add/OpenBSD/PackingList.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: PackingList.pm,v 1.137 2016/06/25 18:02:59 espie Exp $ +# $OpenBSD: PackingList.pm,v 1.138 2016/07/27 13:02:03 espie Exp $ # # Copyright (c) 2003-2014 Marc Espie <espie@openbsd.org> # @@ -257,7 +257,7 @@ sub ExtraInfoOnly { my ($fh, $cont) = @_; while (<$fh>) { - if (m/^\@(?:name|pkgpath|comment\s+(?:subdir|pkgpath)\=|option\s+is-branch)\b/o) { + if (m/^\@(?:name|pkgpath|comment\s+(?:subdir|pkgpath)\=|option)\b/o) { &$cont($_); # XXX optimization } elsif (m/^\@(?:depend|wantlib|newgroup|newuser|cwd)\b/o) { |