diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2009-11-29 10:32:59 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2009-11-29 10:32:59 +0000 |
commit | 4de884c57a9032f52c167129a0ccf37c027f713f (patch) | |
tree | f7f8af1220614983deb2e47bffd417e97373d135 /usr.sbin/pkg_add/OpenBSD | |
parent | 27d5f530118418e1ddd8a9e765b33105279f6ef5 (diff) |
show missing libraries as "|detail" for the can't install message.
Diffstat (limited to 'usr.sbin/pkg_add/OpenBSD')
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/SharedLibs.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/SharedLibs.pm b/usr.sbin/pkg_add/OpenBSD/SharedLibs.pm index 7ce1832a1e7..58a3987df81 100644 --- a/usr.sbin/pkg_add/OpenBSD/SharedLibs.pm +++ b/usr.sbin/pkg_add/OpenBSD/SharedLibs.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: SharedLibs.pm,v 1.39 2009/11/29 07:06:17 espie Exp $ +# $OpenBSD: SharedLibs.pm,v 1.40 2009/11/29 10:32:58 espie Exp $ # # Copyright (c) 2003-2005 Marc Espie <espie@openbsd.org> # @@ -222,12 +222,12 @@ sub report_problem } } if (@l > 0) { - $r .= " in $d: ". join(", ", sort @l). "\n"; + $r .= "| in $d: ". join(", ", sort @l). "\n"; } } if (!defined $printed->{$name} || $printed->{$name} ne $r) { $printed->{$name} = $r; - $state->errsay("library $name not found"); + $state->errsay("|library $name not found"); $state->print($r); } } |