diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-07-20 13:57:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-07-20 13:57:26 +0000 |
commit | 8f1eeea5844bdc6f0356551e6a37269b3e0f88ff (patch) | |
tree | 8c75488b490e8fe4f6f2caa5f776b8c3d1a9c5c0 | |
parent | 982276b91c37240a34ea6a6f4baaa981af10e289 (diff) | |
download | drakx-8f1eeea5844bdc6f0356551e6a37269b3e0f88ff.tar drakx-8f1eeea5844bdc6f0356551e6a37269b3e0f88ff.tar.gz drakx-8f1eeea5844bdc6f0356551e6a37269b3e0f88ff.tar.bz2 drakx-8f1eeea5844bdc6f0356551e6a37269b3e0f88ff.tar.xz drakx-8f1eeea5844bdc6f0356551e6a37269b3e0f88ff.zip |
fix missing ``"''
dules_conf file, but
get an object of the proper type by using modules::any_conf::vnew
-rw-r--r-- | perl-install/install2.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 57ef9fe3c..363ec01b7 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -457,8 +457,9 @@ sub main { eval { spawnShell() }; modules::load_dependencies(($::testing ? ".." : "") . "/modules/modules.dep"); + require modules::any_conf; require modules::modules_conf; - $o->{modules_conf} = modules::modules_conf->read('/tmp/modules.conf'); + $o->{modules_conf} = modules::modules_conf::read(modules::any_conf::vnew(), '/tmp/modules.conf'); modules::read_already_loaded($o->{modules_conf}); #- done before auto_install is called to allow the -IP feature on auto_install file name |