diff options
Diffstat (limited to 'perl-install/interactive.pm')
-rw-r--r-- | perl-install/interactive.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm index a71f27197..dd92bd004 100644 --- a/perl-install/interactive.pm +++ b/perl-install/interactive.pm @@ -40,12 +40,12 @@ sub new($) { sub vnew { if (c::Xtest($ENV{DISPLAY} ||= ":0")) { - require 'interactive_gtk.pm'; + require interactive_gtk; interactive_gtk->new; } else { undef *log::l; *log::l = sub {}; # otherwise, it will bother us :( - require 'interactive_newt.pm'; + require interactive_newt; interactive_newt->new; } } |