diff options
author | Thierry Vignaud <tv@mandriva.org> | 2006-09-13 16:40:37 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2006-09-13 16:40:37 +0000 |
commit | cbc8b38a199e07a72cdd4fd5bd97908c9597f764 (patch) | |
tree | febc1c03a21a9a1ae8da6793f167bc2933bd347b | |
parent | a3f8cad7826552488295bf65cb80d389b1dd7662 (diff) | |
download | rpmdrake-cbc8b38a199e07a72cdd4fd5bd97908c9597f764.tar rpmdrake-cbc8b38a199e07a72cdd4fd5bd97908c9597f764.tar.gz rpmdrake-cbc8b38a199e07a72cdd4fd5bd97908c9597f764.tar.bz2 rpmdrake-cbc8b38a199e07a72cdd4fd5bd97908c9597f764.tar.xz rpmdrake-cbc8b38a199e07a72cdd4fd5bd97908c9597f764.zip |
I made an error while reusing a urpmi string
-rwxr-xr-x | rpmdrake | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1724,8 +1724,8 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-( my $r = join "\n", $urpm->translate_why_removed($urpm->{state}, @to_remove); my $install_count = int(@pkgs); - my $to_install = $install_count ? N("To satisfy dependencies, the following %d packages are going to be installed:\n", $install_count) . - formatlistpkg(map { s!.*/!!; $_ } @pkgs) : ''; + my $to_install = $install_count ? N("To satisfy dependencies, the following %d packages are going to be installed:\n%s\n", $install_count, + formatlistpkg(map { s!.*/!!; $_ } @pkgs)) : ''; interactive_msg_(N("Some packages need to be removed"), ($r ? N("The following packages have to be removed for others to be upgraded: |