jcs's openbsd hax
openbsd
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

let collisionreport work better with FETCH_PACKAGES

espie af4e06d4 1c2f50ca

+4 -1
+4 -1
usr.sbin/pkg_add/OpenBSD/CollisionReport.pm
··· 1 1 # ex:ts=8 sw=4: 2 - # $OpenBSD: CollisionReport.pm,v 1.47 2018/02/27 22:46:53 espie Exp $ 2 + # $OpenBSD: CollisionReport.pm,v 1.48 2019/09/04 12:27:38 espie Exp $ 3 3 # 4 4 # Copyright (c) 2003-2006 Marc Espie <espie@openbsd.org> 5 5 # ··· 57 57 } 58 58 for my $pkg (installed_packages()) { 59 59 $state->say("Looking for collisions in #1", $pkg) if $verbose; 60 + # XXX in -n mode, some stuff is not really there 61 + # avoid warnings 62 + next unless -d installed_info($pkg); 60 63 my $plist = OpenBSD::PackingList->from_installation($pkg, 61 64 \&OpenBSD::PackingList::FilesOnly); 62 65 next if !defined $plist;