diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | urpm/media.pm | 6 |
2 files changed, 8 insertions, 0 deletions
@@ -7,6 +7,8 @@ - urpmf: o check usage of -a, -! and the like instead of displaying the ugly "Internal error: syntax error ..." + o in some cases (iso on disk), the hdlist is not available in + media/xxx/media_info/, but we can use the statedir copy. So use it Version 5.17 - 28 March 2008, by Pascal "Pixel" Rigaux diff --git a/urpm/media.pm b/urpm/media.pm index 1d49f8b0..230946cd 100644 --- a/urpm/media.pm +++ b/urpm/media.pm @@ -352,6 +352,12 @@ sub any_media_info_file { ? reduce_pathname("$base/$prefix." . _synthesis_suffix($medium) . $suffix) : _synthesis_dir($medium) . "/$prefix$suffix"; + if (! -e $f) { + # in some weird cases (iso on disk), the hdlist is not available where it should be, + # but we can use the statedir copy + $f = "$urpm->{statedir}/$prefix.$medium->{name}$suffix"; + } + -e $f && $f; } else { _any_media_info__or_download($urpm, $medium, $prefix, $suffix, $quiet, $o_callback); |