diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-08-10 15:28:34 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-08-10 15:28:34 +0000 |
commit | dfff3c1df3e6155671307dbadf996629ec3e78e0 (patch) | |
tree | 89097a64c1856c735e330bac5d5519efb1baf8c5 /Rpmdrake | |
parent | aa27ed8c0d2ff24a1289993076204d4cb7a1f60e (diff) | |
download | rpmdrake-dfff3c1df3e6155671307dbadf996629ec3e78e0.tar rpmdrake-dfff3c1df3e6155671307dbadf996629ec3e78e0.tar.gz rpmdrake-dfff3c1df3e6155671307dbadf996629ec3e78e0.tar.bz2 rpmdrake-dfff3c1df3e6155671307dbadf996629ec3e78e0.tar.xz rpmdrake-dfff3c1df3e6155671307dbadf996629ec3e78e0.zip |
(perform_installation) kill debug statement
Diffstat (limited to 'Rpmdrake')
-rwxr-xr-x | Rpmdrake/pkg.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm index 0ec4e735..f7c5dde7 100755 --- a/Rpmdrake/pkg.pm +++ b/Rpmdrake/pkg.pm @@ -553,7 +553,7 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-( my $install_count = int(@pkgs); my $to_install = $install_count == 0 ? '' : ( P("The following package is going to be installed:", "The following %d packages are going to be installed:", $install_count, $install_count) - . "\n" . formatlistpkg(map { print ">> $_\n"; s!.*/!!; $_ } @pkgs) . "\n"); + . "\n" . formatlistpkg(map { s!.*/!!; $_ } @pkgs) . "\n"); my $remove_count = scalar(@to_remove); interactive_msg(($to_install ? N("Confirmation") : N("Some packages need to be removed")), ($r ? |