diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-08-11 15:37:48 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-08-11 15:37:48 +0000 |
commit | f0c0ba3c176af4afd6659f532541043c7143e0e8 (patch) | |
tree | 5df0e46ab225d23dd99ff615f29dd31649e6a4a7 /urpm | |
parent | c5399523daa90db86e0dd1220d5480e7baf1cfd3 (diff) | |
download | urpmi-f0c0ba3c176af4afd6659f532541043c7143e0e8.tar urpmi-f0c0ba3c176af4afd6659f532541043c7143e0e8.tar.gz urpmi-f0c0ba3c176af4afd6659f532541043c7143e0e8.tar.bz2 urpmi-f0c0ba3c176af4afd6659f532541043c7143e0e8.tar.xz urpmi-f0c0ba3c176af4afd6659f532541043c7143e0e8.zip |
- get rid of a warning reading empty file
- have extra first in the list (useful for --preferred being taken into
account before /etc/urpmi/preferred.list)
- cleanup
Diffstat (limited to 'urpm')
-rw-r--r-- | urpm/sys.pm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/urpm/sys.pm b/urpm/sys.pm index 90f91e8d..612c9ed6 100644 --- a/urpm/sys.pm +++ b/urpm/sys.pm @@ -15,14 +15,14 @@ use POSIX (); #- typically from the inst.list or skip.list files. sub get_packages_list { my ($file, $o_extra) = @_; - my $val = []; - open(my $f, '<', $file); - foreach (<$f>, split /,/, $o_extra || '') { - chomp; s/#.*$//; s/^\s*//; s/\s*$//; - next if $_ eq ''; - push @$val, $_; + my @l = split(/,/, $o_extra || ''); + if (open(my $f, '<', $file)) { + push @l, <$f>; } - $val; + [ grep { $_ } map { + chomp; s/#.*$//; s/^\s*//; s/\s*$//; + $_; + } @l ]; } #- find used mount point from a pathname, use a optional mode to allow |