diff options
author | Francois Pons <fpons@mandriva.com> | 2003-09-01 12:26:43 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-09-01 12:26:43 +0000 |
commit | 952c99610d94ad90c543abd2ae9863f17e3d3470 (patch) | |
tree | f2ef37582af4e00126545f8bde375326c3e89c21 | |
parent | 5f589f77ff1c7911b76bcaaf9e78a7618dd5b252 (diff) | |
download | urpmi-952c99610d94ad90c543abd2ae9863f17e3d3470.tar urpmi-952c99610d94ad90c543abd2ae9863f17e3d3470.tar.gz urpmi-952c99610d94ad90c543abd2ae9863f17e3d3470.tar.bz2 urpmi-952c99610d94ad90c543abd2ae9863f17e3d3470.tar.xz urpmi-952c99610d94ad90c543abd2ae9863f17e3d3470.zip |
fixed uyrpmi --auto-select saying nothing if nothing has to be updated.
-rwxr-xr-x | urpmi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -781,7 +781,7 @@ if ($nok) { } else { if ($test) { message(N("Installation is possible")); - } elsif (@names || @src_names || @files || @src_files) { + } elsif (@names || @src_names || @files || @src_files || $auto_select) { @{$state->{transaction} || []} == 0 && $verbose >= 0 and message(N("Everything already installed"), $auto); } } |