diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2020-01-02 12:27:05 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2020-01-02 12:27:05 +0000 |
commit | f1ebd687e67fb4e307e6939ee5d0aeb11ffb8f2d (patch) | |
tree | fe993f50a7d02491588ec2ea348394589b5acccd | |
parent | f3d4989cf170b3630bb0aac95d5976be32b00db9 (diff) |
plain forgot about THAT optimization.
Let .so/.a print again in pkg_info -L
noticed by Mikolaj Kucharski
-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 13b2b391bf2..ec02d539b33 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.146 2018/06/23 19:34:01 espie Exp $ +# $OpenBSD: PackingList.pm,v 1.147 2020/01/02 12:27:04 espie Exp $ # # Copyright (c) 2003-2014 Marc Espie <espie@openbsd.org> # @@ -235,7 +235,7 @@ sub FilesOnly { my ($fh, $cont) = @_; while (<$fh>) { - next unless m/^\@(?:cwd|name|info|man|file|lib|shell|sample|bin|rcscript)\b/o || !m/^\@/o; + next unless m/^\@(?:cwd|name|info|man|file|lib|shell|sample|bin|rcscript|so|static-lib)\b/o || !m/^\@/o; &$cont($_); } } |