diff options
author | 2014-12-24 12:50:22 +0000 | |
---|---|---|
committer | 2014-12-24 12:50:22 +0000 | |
commit | 402e0ae1b33f2a7608e5d10d98f4914d5ba96b87 (patch) | |
tree | 54c570d300d502611a95e01ae91ddbccef9b2e1f | |
parent | When a man(7) document contains unreasonably large numbers for (diff) | |
download | wireguard-openbsd-402e0ae1b33f2a7608e5d10d98f4914d5ba96b87.tar.xz wireguard-openbsd-402e0ae1b33f2a7608e5d10d98f4914d5ba96b87.zip |
recheck list for non emptyness *after* filtering obsolete packages.
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/PkgAdd.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PkgAdd.pm b/usr.sbin/pkg_add/OpenBSD/PkgAdd.pm index 06b8d2b329e..9741e955a84 100644 --- a/usr.sbin/pkg_add/OpenBSD/PkgAdd.pm +++ b/usr.sbin/pkg_add/OpenBSD/PkgAdd.pm @@ -1,7 +1,7 @@ #! /usr/bin/perl # ex:ts=8 sw=4: -# $OpenBSD: PkgAdd.pm,v 1.79 2014/11/30 15:53:54 espie Exp $ +# $OpenBSD: PkgAdd.pm,v 1.80 2014/12/24 12:50:22 espie Exp $ # # Copyright (c) 2003-2014 Marc Espie <espie@openbsd.org> # @@ -1066,7 +1066,7 @@ sub inform_user_of_problems }); $state->say("Couldn't find updates for #1", - join(', ', sort @cantupdate)); + join(', ', sort @cantupdate)) if @cantupdate > 0; } if (defined $state->{issues}) { $state->say("There were some ambiguities. ". |