summaryrefslogtreecommitdiffstats
path: root/urpmq
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-04-24 19:34:32 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-04-24 19:34:32 +0000
commit4df7583caa71a35d6d68c373fc0c62d1be6d955b (patch)
treebddf36169b314d82ff20036dea7e47fa4fec5bcd /urpmq
parent7a606ec3537b2f465f8e06e99b445c756bfcca8f (diff)
downloadurpmi-4df7583caa71a35d6d68c373fc0c62d1be6d955b.tar
urpmi-4df7583caa71a35d6d68c373fc0c62d1be6d955b.tar.gz
urpmi-4df7583caa71a35d6d68c373fc0c62d1be6d955b.tar.bz2
urpmi-4df7583caa71a35d6d68c373fc0c62d1be6d955b.tar.xz
urpmi-4df7583caa71a35d6d68c373fc0c62d1be6d955b.zip
re-sync after the big svn loss
Diffstat (limited to 'urpmq')
-rwxr-xr-xurpmq4
1 files changed, 1 insertions, 3 deletions
diff --git a/urpmq b/urpmq
index 3d44b840..6348e281 100755
--- a/urpmq
+++ b/urpmq
@@ -288,7 +288,7 @@ if ($urpm::args::options{list_aliases}) {
#- If more than one thing provides this requirement
#- then don't bother finding stuff
#- that needs it as it will be invalid
- my @l = grep { $_ ne $pkg->name } map { $urpm->{depslist}[$_]->name } keys %{$urpm->{provides}{$n}};
+ my @l = grep { $_ ne $pkg->name } map { $_->name } $urpm->packages_providing($n);
$urpm->{log}(sprintf "skipping package(s) requiring %s via %s, since %s is also provided by %s", $pkg->name, $n, $n, join(' ', @l));
next;
}
@@ -413,8 +413,6 @@ if ($urpm::args::options{list_aliases}) {
if ($urpm::args::options{list_files}) {
if ($pkg->files) {
print join("\n", $pkg->files) . "\n";
- } else {
- print STDERR N("No filelist found\n");
}
}
if ($urpm::args::options{changelog}) {