summaryrefslogtreecommitdiffstats
path: root/urpmi
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-01-18 08:51:34 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-01-18 08:51:34 +0000
commit90f3584c4bd4c3f386deb144731d31a7f874d476 (patch)
tree0e6d371e7f802e9ef66e5674d963502a639923eb /urpmi
parente6221ef7b767a008632da9abcfacf60e99503ecc (diff)
downloadurpmi-90f3584c4bd4c3f386deb144731d31a7f874d476.tar
urpmi-90f3584c4bd4c3f386deb144731d31a7f874d476.tar.gz
urpmi-90f3584c4bd4c3f386deb144731d31a7f874d476.tar.bz2
urpmi-90f3584c4bd4c3f386deb144731d31a7f874d476.tar.xz
urpmi-90f3584c4bd4c3f386deb144731d31a7f874d476.zip
plural and singular were inverted (thanks to Frank Griffin for reporting)
Diffstat (limited to 'urpmi')
-rwxr-xr-xurpmi10
1 files changed, 5 insertions, 5 deletions
diff --git a/urpmi b/urpmi
index d04cd8e4..5adbe4e5 100755
--- a/urpmi
+++ b/urpmi
@@ -188,7 +188,7 @@ if (@ARGV && $auto_select) {
}
# Verify that arguments were given
-unless (@ARGV || $auto_select) {
+unless (@ARGV || $auto_select || $clean) {
if ($options{bug}) {
print STDERR N("Error: To generate a bug report, specify the usual command-line arguments
along with --bug.\n");
@@ -575,8 +575,8 @@ foreach my $pkg (sort { $a->name cmp $b->name } @{$urpm->{depslist}}[keys %{$sta
}
$urpm->{nb_install} = @to_install;
if ($env) {
- my $msg = P("To satisfy dependencies, the following packages are going to be installed",
- "To satisfy dependencies, the following package is going to be installed", $#to_install);
+ my $msg = P("To satisfy dependencies, the following package is going to be installed",
+ "To satisfy dependencies, the following packages are going to be installed", $#to_install);
my $msg2 = N("(%d packages, %d MB)", $urpm->{nb_install}, toMb($sum));
my $p = join "\n", @to_install;
print "$msg:\n$p\n$msg2\n";
@@ -586,8 +586,8 @@ if (@root_only) {
print N("You need to be root to install the following dependencies:\n%s\n", join ' ', @root_only);
exit 1;
} elsif (!$urpm->{options}{auto} && $ask_user && @to_install) {
- my $msg = P("To satisfy dependencies, the following packages are going to be installed",
- "To satisfy dependencies, the following package is going to be installed", $#to_install);
+ my $msg = P("To satisfy dependencies, the following package is going to be installed",
+ "To satisfy dependencies, the following packages are going to be installed", $#to_install);
if ($test) {
$msg = "$msg\n" . N("(test only, installation will not be actually done)");
}