summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-12-01 08:53:47 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-12-01 08:53:47 +0000
commit27968886bf2586682cb1a6f45eb8b485dc6a4257 (patch)
tree8ee761eb8c2fe9067af23fa2d38348284d84ea9f /perl-install/interactive.pm
parent11c086f6eb07e76fec02c5627072d52b4d6cd7d8 (diff)
downloaddrakx-backup-do-not-use-27968886bf2586682cb1a6f45eb8b485dc6a4257.tar
drakx-backup-do-not-use-27968886bf2586682cb1a6f45eb8b485dc6a4257.tar.gz
drakx-backup-do-not-use-27968886bf2586682cb1a6f45eb8b485dc6a4257.tar.bz2
drakx-backup-do-not-use-27968886bf2586682cb1a6f45eb8b485dc6a4257.tar.xz
drakx-backup-do-not-use-27968886bf2586682cb1a6f45eb8b485dc6a4257.zip
no_comment
Diffstat (limited to 'perl-install/interactive.pm')
-rw-r--r--perl-install/interactive.pm4
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;
}
}