diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-01-18 14:27:11 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-01-18 14:27:11 +0000 |
commit | 9916a26ef1ce76f892612d40c5e9bcbcc5e7bf80 (patch) | |
tree | 17084e3791980b7cd09fa8ffa05688e446470828 /gurpmi2 | |
parent | 886b87150c8617a4f95fa3873cf3021c29f8808f (diff) | |
download | urpmi-9916a26ef1ce76f892612d40c5e9bcbcc5e7bf80.tar urpmi-9916a26ef1ce76f892612d40c5e9bcbcc5e7bf80.tar.gz urpmi-9916a26ef1ce76f892612d40c5e9bcbcc5e7bf80.tar.bz2 urpmi-9916a26ef1ce76f892612d40c5e9bcbcc5e7bf80.tar.xz urpmi-9916a26ef1ce76f892612d40c5e9bcbcc5e7bf80.zip |
(do_install_2) factorize string with urpmi
Diffstat (limited to 'gurpmi2')
-rwxr-xr-x | gurpmi2 | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -206,10 +206,10 @@ sub do_install_2 () { } $urpm->{nb_install} = @to_install; @to_install > 1 && !$gurpmi::options{auto} - ? ask_continue(P("To satisfy dependencies, the following package is going to be installed\n%d2s\n", - "To satisfy dependencies, the following %d packages are going to be installed:\n%s\n", - scalar(@to_install), join "\n", @to_install - ), \&do_install_3) + ? ask_continue(P("To satisfy dependencies, the following package is going to be installed:", + "To satisfy dependencies, the following %d packages are going to be installed:", + scalar(@to_install), + ) . join("\n", '', @to_install, ''), \&do_install_3) : goto \&do_install_3; } |