diff options
author | Francois Pons <fpons@mandriva.com> | 2002-07-18 16:08:17 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-07-18 16:08:17 +0000 |
commit | 7b506103858acdff270ed0b68871f5f727607f7e (patch) | |
tree | 6cccf113b1fddaebf8ea961b43ef94be9168876a /perl-install | |
parent | f250526dd66a5eaecccdeba591ca1310b359f8d7 (diff) | |
download | drakx-7b506103858acdff270ed0b68871f5f727607f7e.tar drakx-7b506103858acdff270ed0b68871f5f727607f7e.tar.gz drakx-7b506103858acdff270ed0b68871f5f727607f7e.tar.bz2 drakx-7b506103858acdff270ed0b68871f5f727607f7e.tar.xz drakx-7b506103858acdff270ed0b68871f5f727607f7e.zip |
fixes with new urpm library of urpmi.
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/XFdrake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/XFdrake b/perl-install/standalone/XFdrake index e5e7b5609..35eb74b88 100755 --- a/perl-install/standalone/XFdrake +++ b/perl-install/standalone/XFdrake @@ -69,8 +69,8 @@ my $allowNVIDIA_rpms; foreach (grep { !$_->{ignore} } @{$urpm->{media} || []}) { $urpm->parse_synthesis($_); } - foreach (@{$urpm->{params}{depslist} || []}) { - $_->{name} =~ /NVIDIA/ and $list->{$_->{name}} = 1; + foreach (@{$urpm->{depslist} || []}) { + $_->name =~ /NVIDIA/ and $list->{$_->name} = 1; } }; if ($list{NVIDIA_GLX}) { |