summaryrefslogtreecommitdiffstats
path: root/perl-install/install_any.pm
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-08-14 15:56:29 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-08-14 15:56:29 +0000
commit8d9948a4c4ac65c3cc7d310635d5e90acd4efeae (patch)
tree46a225552c3227a3c499fb38e43a7e8c9627e61e /perl-install/install_any.pm
parent10de0d31d59fae02f101b78ee9d70a2b084db4c6 (diff)
downloaddrakx-backup-do-not-use-8d9948a4c4ac65c3cc7d310635d5e90acd4efeae.tar
drakx-backup-do-not-use-8d9948a4c4ac65c3cc7d310635d5e90acd4efeae.tar.gz
drakx-backup-do-not-use-8d9948a4c4ac65c3cc7d310635d5e90acd4efeae.tar.bz2
drakx-backup-do-not-use-8d9948a4c4ac65c3cc7d310635d5e90acd4efeae.tar.xz
drakx-backup-do-not-use-8d9948a4c4ac65c3cc7d310635d5e90acd4efeae.zip
oops, fix type of installing X or not
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r--perl-install/install_any.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm
index 5c2c9afa6..907886226 100644
--- a/perl-install/install_any.pm
+++ b/perl-install/install_any.pm
@@ -362,7 +362,7 @@ sub setPackages {
$o->{compssUsersChoice}{uc($_)} = 1 foreach grep { modules::get_that_type($_) } ('tv', 'scanner', 'photo', 'sound');
$o->{compssUsersChoice}{uc($_)} = 1 foreach map { $_->{driver} =~ /Flag:(.*)/ } detect_devices::probeall();
$o->{compssUsersChoice}{SYSTEM} = 1;
- $o->{compssUsersChoice}{X} = 1 if !$o->{interactive};
+ $o->{compssUsersChoice}{X} = 1 if $o->{interactive};
$o->{compssUsersChoice}{BURNER} = 1 if detect_devices::burners();
$o->{compssUsersChoice}{DVD} = 1 if detect_devices::dvdroms();
$o->{compssUsersChoice}{PCMCIA} = 1 if detect_devices::hasPCMCIA();