summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--urpm/parallel.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 47afa781..9e8bbac0 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,7 @@
- urpmi:
o handle README.urpmi in utf8 (but not other encodings) (#41553)
o handle --debug-librpm
+ o fix --parallel on local media (ie when synthesis.cz is not copied to /var/lib/urpmi)
- urpmi.addmedia:
o make --mirrorlist with no url equivalent to --mirrorlist '$MIRRORLIST' (#40283)
o --interactive: fix selecting "noauto" media (#39522)
diff --git a/urpm/parallel.pm b/urpm/parallel.pm
index fc8f6020..442dd29d 100644
--- a/urpm/parallel.pm
+++ b/urpm/parallel.pm
@@ -47,7 +47,7 @@ sub resolve_dependencies {
unlink $file;
foreach (@{$urpm->{media}}) {
urpm::media::is_valid_medium($_) or next;
- my $f = urpm::media::statedir_synthesis($urpm, $_);
+ my $f = urpm::media::any_synthesis($urpm, $_);
system "cat '$f' >> '$file'";
}
#- let each node determine what is requested, according to handler given.