summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfigurator.pm
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2000-09-19 16:45:48 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2000-09-19 16:45:48 +0000
commitede1eacadd1ad9ca90fb1d7ee2508bce4eac3dbe (patch)
tree944618efb81b3282f0e0d173c13ea7223bb9d3e7 /perl-install/Xconfigurator.pm
parent5a487a674f320081abd558bcdbfe305d00cbdc96 (diff)
downloaddrakx-backup-do-not-use-ede1eacadd1ad9ca90fb1d7ee2508bce4eac3dbe.tar
drakx-backup-do-not-use-ede1eacadd1ad9ca90fb1d7ee2508bce4eac3dbe.tar.gz
drakx-backup-do-not-use-ede1eacadd1ad9ca90fb1d7ee2508bce4eac3dbe.tar.bz2
drakx-backup-do-not-use-ede1eacadd1ad9ca90fb1d7ee2508bce4eac3dbe.tar.xz
drakx-backup-do-not-use-ede1eacadd1ad9ca90fb1d7ee2508bce4eac3dbe.zip
changed `suspend' and `resume' to behave as expected.
added `enter_console' and `leave_console' for install_interactive::use_fdisk
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r--perl-install/Xconfigurator.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm
index d094f27fe..f924b379c 100644
--- a/perl-install/Xconfigurator.pm
+++ b/perl-install/Xconfigurator.pm
@@ -271,10 +271,10 @@ NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.", $xf3_ver)) . "
}
-x "$prefix$card->{prog}" or $install && do {
- $in->suspend if ref($in) =~ /newt/;
+ $in->suspend;
&$install('server', @l) if $card->{use_xf4};
&$install($card->{server}, @l) if !$card->{use_xf4};
- $in->resume if ref($in) =~ /newt/;
+ $in->resume;
};
-x "$prefix$card->{prog}" or die "server $card->{server} is not available (should be in $prefix$card->{prog})";