diff options
author | Francois Pons <fpons@mandriva.com> | 2002-08-13 14:22:29 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-08-13 14:22:29 +0000 |
commit | 73f1b939e999fdb98942d1f23ced8135b3d437a1 (patch) | |
tree | a07739612e89469ab4cd9c5ebc8fd9bdaf3dba9f | |
parent | e24fb32ac9044de096ed96ebcb9d5798ff350ca2 (diff) | |
download | drakx-73f1b939e999fdb98942d1f23ced8135b3d437a1.tar drakx-73f1b939e999fdb98942d1f23ced8135b3d437a1.tar.gz drakx-73f1b939e999fdb98942d1f23ced8135b3d437a1.tar.bz2 drakx-73f1b939e999fdb98942d1f23ced8135b3d437a1.tar.xz drakx-73f1b939e999fdb98942d1f23ced8135b3d437a1.zip |
fixed stupid typo.
-rw-r--r-- | perl-install/pkgs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 7e79a8ca6..76a5fde39 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -216,7 +216,7 @@ sub packageCallbackChoices { #- is already selected. foreach ($pkg->requires_nosense) { /locales-/ or next; - my $p = packageByName($packages, $_) or next; + my $p = packageByName($urpm, $_) or next; $p->flag_available and $prefer ||= $pkg; } } |