diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-10 07:38:18 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-10 07:38:18 +0000 |
commit | a655b0e1e07efb3fd057f726b85887908d970ba6 (patch) | |
tree | 5c22433d00fef31132d1ce790939093b0e3956a2 /perl-install/harddrake/autoconf.pm | |
parent | b026d0fd87157061e0f8e5a31247bec7d08a8394 (diff) | |
download | drakx-a655b0e1e07efb3fd057f726b85887908d970ba6.tar drakx-a655b0e1e07efb3fd057f726b85887908d970ba6.tar.gz drakx-a655b0e1e07efb3fd057f726b85887908d970ba6.tar.bz2 drakx-a655b0e1e07efb3fd057f726b85887908d970ba6.tar.xz drakx-a655b0e1e07efb3fd057f726b85887908d970ba6.zip |
- move functions using /proc/partitions out of fsedit to fs::proc_partitions
- remove unneeded "use xxx"
- add some "use xxx" (nb: not completly needed because some other modules may do it)
Diffstat (limited to 'perl-install/harddrake/autoconf.pm')
-rw-r--r-- | perl-install/harddrake/autoconf.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/harddrake/autoconf.pm b/perl-install/harddrake/autoconf.pm index 8cbbb9b4c..7f2c105d9 100644 --- a/perl-install/harddrake/autoconf.pm +++ b/perl-install/harddrake/autoconf.pm @@ -1,7 +1,6 @@ package harddrake::autoconf; use common; -use any; sub xconf { my ($modules_conf, $o) = @_; @@ -9,10 +8,10 @@ sub xconf { log::l('automatic XFree configuration'); require Xconfig::default; + require do_pkgs; $o->{raw_X} = Xconfig::default::configure(do_pkgs_standalone->new); require Xconfig::main; - require do_pkgs; Xconfig::main::configure_everything_auto_install($o->{raw_X}, do_pkgs_standalone->new, {}, { allowFB => 1 }); modules::load_category($modules_conf, 'various/agpgart'); |