diff options
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); |