diff options
author | Francois Pons <fpons@mandriva.com> | 2002-07-15 12:25:35 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-07-15 12:25:35 +0000 |
commit | 2ad05636a10b03e42678b28dae1b23b07f42bf06 (patch) | |
tree | 51df0969ade6ae38a30756f7c22349887dada3f7 | |
parent | 7119403aad0d11cf9e3f4fcc9c898b25269a4974 (diff) | |
download | drakx-backup-do-not-use-2ad05636a10b03e42678b28dae1b23b07f42bf06.tar drakx-backup-do-not-use-2ad05636a10b03e42678b28dae1b23b07f42bf06.tar.gz drakx-backup-do-not-use-2ad05636a10b03e42678b28dae1b23b07f42bf06.tar.bz2 drakx-backup-do-not-use-2ad05636a10b03e42678b28dae1b23b07f42bf06.tar.xz drakx-backup-do-not-use-2ad05636a10b03e42678b28dae1b23b07f42bf06.zip |
fixed reference to no more used method of pkgs.
-rw-r--r-- | perl-install/network/isdn.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/isdn.pm b/perl-install/network/isdn.pm index 4b081274e..1ab029b87 100644 --- a/perl-install/network/isdn.pm +++ b/perl-install/network/isdn.pm @@ -57,7 +57,7 @@ We recommand the light configuration. if (!$::isStandalone) { require pkgs; my $p = pkgs::packageByName($in->{packages}, $rmpackage); - $p && pkgs::packageFlagSelected($p) and pkgs::unselectPackage($in->{packages}, $p); + $p && $p->flag_selected and pkgs::unselectPackage($in->{packages}, $p); } run_program::rooted($prefix, "rpm", "-e", "$rmpackage"); $in->do_pkgs->install($instpackage, if_($isdn->{speed} =~ /128/, 'ibod'), 'isdn4k-utils'); |