diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-08-12 12:15:01 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-08-12 12:15:01 +0000 |
commit | 98fe1b85f7c0a613343e0def29cc531f7e4d68dd (patch) | |
tree | a661e1383343358b23f4067a03a4e4bc6badc623 /urpm/sys.pm | |
parent | 12eb101d85191fda6654d4ed804f01df78fa6e52 (diff) | |
download | urpmi-98fe1b85f7c0a613343e0def29cc531f7e4d68dd.tar urpmi-98fe1b85f7c0a613343e0def29cc531f7e4d68dd.tar.gz urpmi-98fe1b85f7c0a613343e0def29cc531f7e4d68dd.tar.bz2 urpmi-98fe1b85f7c0a613343e0def29cc531f7e4d68dd.tar.xz urpmi-98fe1b85f7c0a613343e0def29cc531f7e4d68dd.zip |
- library
o urpm::select: new function get_preferred() replacing sort_choices()
(for drakx)
o get rid of "use of unitialized" when file is unset (for drakx)
Diffstat (limited to 'urpm/sys.pm')
-rw-r--r-- | urpm/sys.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/sys.pm b/urpm/sys.pm index 612c9ed6..da7736d9 100644 --- a/urpm/sys.pm +++ b/urpm/sys.pm @@ -16,7 +16,7 @@ use POSIX (); sub get_packages_list { my ($file, $o_extra) = @_; my @l = split(/,/, $o_extra || ''); - if (open(my $f, '<', $file)) { + if ($file && open(my $f, '<', $file)) { push @l, <$f>; } [ grep { $_ } map { |