diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | pod/urpmi.8.pod | 2 | ||||
-rw-r--r-- | urpm/media.pm | 2 |
3 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,6 @@ - urpmi o fix rpmdb locking with --root + o handle --searchmedia <media1>,...,<mediaN> o do auto upgrade mandriva kernels (ie remove kernel*-latest to skip.list) Version 4.10.6 - 28 August 2007, by Pascal "Pixel" Rigaux diff --git a/pod/urpmi.8.pod b/pod/urpmi.8.pod index fc138758..9743700d 100644 --- a/pod/urpmi.8.pod +++ b/pod/urpmi.8.pod @@ -69,7 +69,7 @@ No rpm will be fetched from other media. Do not use the specified media. -=item B<--searchmedia> I<media> +=item B<--searchmedia> I<media1,...,mediaN> Use only the specified media to search for packages that are specified on the command-line, or which are found when using B<--auto-select>. diff --git a/urpm/media.pm b/urpm/media.pm index 7e94100a..cfc3ab8a 100644 --- a/urpm/media.pm +++ b/urpm/media.pm @@ -541,7 +541,7 @@ sub configure { } } if ($options{searchmedia}) { - foreach (select_media_by_name($urpm, [ $options{searchmedia} ])) { + foreach (select_media_by_name($urpm, [ split /,/, $options{searchmedia} ])) { #- Ensure this media is selected $_->{modified} = 1; _tempignore($_, 0); |