summaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_add
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2007-06-07 20:41:02 +0000
committerMarc Espie <espie@cvs.openbsd.org>2007-06-07 20:41:02 +0000
commitb0eeb6e672fd9c187ec201b9da9551cd72796a51 (patch)
tree073893094db0eda75ac6ad3d1e28d8638c9f1e68 /usr.sbin/pkg_add
parent9ab06a41d634c49213551882be9681038fe8a839 (diff)
show messages about keeping libraries more often, starting on verbose.
Diffstat (limited to 'usr.sbin/pkg_add')
-rw-r--r--usr.sbin/pkg_add/OpenBSD/Replace.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/Replace.pm b/usr.sbin/pkg_add/OpenBSD/Replace.pm
index 68fa785b20a..9946fe319fc 100644
--- a/usr.sbin/pkg_add/OpenBSD/Replace.pm
+++ b/usr.sbin/pkg_add/OpenBSD/Replace.pm
@@ -1,5 +1,5 @@
# ex:ts=8 sw=4:
-# $OpenBSD: Replace.pm,v 1.36 2007/06/07 12:57:33 espie Exp $
+# $OpenBSD: Replace.pm,v 1.37 2007/06/07 20:41:01 espie Exp $
#
# Copyright (c) 2004-2006 Marc Espie <espie@openbsd.org>
#
@@ -425,11 +425,11 @@ sub save_old_libraries
if (%$libs) {
print "Libraries to keep: ", join(",", sort(keys %$libs)), "\n"
- if $state->{beverbose};
+ if $state->{verbose};
($o->{plist}, my $stub_list) = split_libs($o->{plist}, $libs);
my $stub_name = $stub_list->pkgname;
my $dest = installed_info($stub_name);
- print "Keeping them in $stub_name\n" if $state->{beverbose};
+ print "Keeping them in $stub_name\n" if $state->{verbose};
if ($state->{not}) {
$stub_list->to_cache;
$o->{plist}->to_cache;
@@ -453,7 +453,7 @@ sub save_old_libraries
adjust_depends_closure($oldname, $stub_list, $state);
} else {
- print "No libraries to keep\n" if $state->{beverbose};
+ print "No libraries to keep\n" if $state->{verbose};
}
}
}