summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2001-04-13 17:05:25 +0000
committerMarc Espie <espie@cvs.openbsd.org>2001-04-13 17:05:25 +0000
commitf5aa3b21385f08174b4815bc04668b1cbff49962 (patch)
tree638b1ecd07478821540c7bbcf69648eb83fc02de /usr.sbin
parent85d6fcada8d289183d083272be324d3abb459042 (diff)
Remove debugging output, and some extra junk from the verbose output.
Prefix verbose output with pkg: so that we get a better idea what we're dealing with...
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/pkg/pkg.pl6
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.sbin/pkg/pkg.pl b/usr.sbin/pkg/pkg.pl
index 0f975aa84e5..594f584498f 100644
--- a/usr.sbin/pkg/pkg.pl
+++ b/usr.sbin/pkg/pkg.pl
@@ -1,6 +1,6 @@
#!/usr/bin/perl
# ex:ts=8 sw=4:
-# $OpenBSD: pkg.pl,v 1.1 2001/04/02 10:11:16 espie Exp $
+# $OpenBSD: pkg.pl,v 1.2 2001/04/13 17:05:24 espie Exp $
#
# Copyright (c) 2001 Marc Espie.
#
@@ -191,7 +191,6 @@ sub subpattern_match
($stemspec, $vspec, $flavorspec) = ($p, '', '');
}
- print "$stemspec, $vspec, $flavorspec\n" if $verbose;
$p = "$stemspec-\.\*" if $vspec ne '';
# First trim down the list
@@ -211,7 +210,6 @@ sub subpattern_match
}
}
- print join(', ', @result), "\n";
return @result;
}
@@ -280,7 +278,7 @@ sub solve_dependencies
# create all the new pkgdep stuff
for my $check (@todo) {
- print "Handling dependencies for $check\n" if $verbose;
+ print "pkg: Handling dependencies for $check\n" if $verbose;
for my $dep (@{$verify{$check}}) {
print " checking ", $dep->[0], " (", $dep->[1],
") -> " if $verbose;