diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-08-06 13:43:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-08-06 13:43:26 +0000 |
commit | 21fbfdfead833c685b255edb3c3460198ce89877 (patch) | |
tree | 53d5fe3042a57097040f468982deb062737fe26a /perl-install/install_steps_auto_install.pm | |
parent | f18434c76326cf6c58d24dc67ef4707ec72f400d (diff) | |
download | drakx-21fbfdfead833c685b255edb3c3460198ce89877.tar drakx-21fbfdfead833c685b255edb3c3460198ce89877.tar.gz drakx-21fbfdfead833c685b255edb3c3460198ce89877.tar.bz2 drakx-21fbfdfead833c685b255edb3c3460198ce89877.tar.xz drakx-21fbfdfead833c685b255edb3c3460198ce89877.zip |
no_comment
Diffstat (limited to 'perl-install/install_steps_auto_install.pm')
-rw-r--r-- | perl-install/install_steps_auto_install.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps_auto_install.pm b/perl-install/install_steps_auto_install.pm index 4c7c426e3..19a4358d9 100644 --- a/perl-install/install_steps_auto_install.pm +++ b/perl-install/install_steps_auto_install.pm @@ -23,8 +23,8 @@ sub new { if ($graphical) { require install_steps_gtk; - undef *enteringStep; *enteringStep = *install_steps_gtk::enteringStep; - undef *installPackages; *installPackages = *install_steps_gtk::installPackages; + undef *enteringStep; *enteringStep = \&install_steps_gtk::enteringStep; + undef *installPackages; *installPackages = \&install_steps_gtk::installPackages; goto &install_steps_gtk::new; } else { (bless {}, ref $type || $type)->SUPER::new($o); |