diff options
author | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2003-04-01 09:40:28 +0000 |
---|---|---|
committer | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2003-04-01 09:40:28 +0000 |
commit | 729afffc9c537056d5c67c66af4942e862c475f0 (patch) | |
tree | 2104f7ee44527076f1714de9cd616dabd2ca650e | |
parent | 5f4eca604ff6397dd4144748a9b85d81ad6cf0b5 (diff) | |
download | drakx-729afffc9c537056d5c67c66af4942e862c475f0.tar drakx-729afffc9c537056d5c67c66af4942e862c475f0.tar.gz drakx-729afffc9c537056d5c67c66af4942e862c475f0.tar.bz2 drakx-729afffc9c537056d5c67c66af4942e862c475f0.tar.xz drakx-729afffc9c537056d5c67c66af4942e862c475f0.zip |
Pass $Driver to launchX in non /FB/ case
-rw-r--r-- | perl-install/install_steps_gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm index 02e950443..06a4b924c 100644 --- a/perl-install/install_steps_gtk.pm +++ b/perl-install/install_steps_gtk.pm @@ -103,7 +103,7 @@ sub new($$) { and goto OK; } else { $o->{vga16} = 1 if /VGA16/; - &$launchX($prog) and goto OK; + &$launchX($prog, $Driver) and goto OK; } } return undef; |