diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2005-01-13 00:27:40 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2005-01-13 00:27:40 +0000 |
commit | ef2eebbd94aebfa91211c8dfea9d957d7d14e897 (patch) | |
tree | 4261519b9ceb4db217adc8063faa0490cc1557bb /usr.sbin | |
parent | 6e346e754ee2063d30fa51191a80313e180b965c (diff) |
let collision reports give the name of the package they're trying to
install. When you add 2000 packages, this can be *real* confusing
otherwise.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/Add.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/Add.pm b/usr.sbin/pkg_add/OpenBSD/Add.pm index 511e9d4d1a1..d93e1eb7768 100644 --- a/usr.sbin/pkg_add/OpenBSD/Add.pm +++ b/usr.sbin/pkg_add/OpenBSD/Add.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: Add.pm,v 1.29 2004/12/20 12:16:51 espie Exp $ +# $OpenBSD: Add.pm,v 1.30 2005/01/13 00:27:39 espie Exp $ # # Copyright (c) 2003-2004 Marc Espie <espie@openbsd.org> # @@ -103,7 +103,7 @@ sub validate_plist($$) OpenBSD::CollisionReport::collision_report($colliding, $state); } - Fatal "fatal issues" if $problems; + Fatal "fatal issues in installing $pkgname" if $problems; return $totsize; } |