diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-10-07 00:44:15 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-10-07 00:44:15 +0000 |
commit | 84dc6e1ef501b25d8fe20c0f99a21c5491fbf685 (patch) | |
tree | 78e51c3a4d5b25c86966a8a7db02fcdb16b7ac38 /perl-install/install_steps.pm | |
parent | c444f93dc13e0cfcefef21173b926ff8b9aa1c6b (diff) | |
download | drakx-84dc6e1ef501b25d8fe20c0f99a21c5491fbf685.tar drakx-84dc6e1ef501b25d8fe20c0f99a21c5491fbf685.tar.gz drakx-84dc6e1ef501b25d8fe20c0f99a21c5491fbf685.tar.bz2 drakx-84dc6e1ef501b25d8fe20c0f99a21c5491fbf685.tar.xz drakx-84dc6e1ef501b25d8fe20c0f99a21c5491fbf685.zip |
- XFdrake can detect a auxmouse which was not detected by mousedrake so we need to call various_xfree_conf()
- this implies adding parameter $do_pkgs to a few functions
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index acf354c3b..3884f755c 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -928,7 +928,7 @@ sub configureX { configureXBefore($o); require Xconfig::default; - $o->{raw_X} = Xconfig::default::configure($o->{keyboard}, $o->{mouse}); + $o->{raw_X} = Xconfig::default::configure($o->do_pkgs, $o->{keyboard}, $o->{mouse}); require Xconfig::main; Xconfig::main::configure_everything_auto_install($o->{raw_X}, $o->do_pkgs, $o->{X}, install_any::X_options_from_o($o)); |