diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-08-14 15:56:29 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-08-14 15:56:29 +0000 |
commit | 8d9948a4c4ac65c3cc7d310635d5e90acd4efeae (patch) | |
tree | 46a225552c3227a3c499fb38e43a7e8c9627e61e | |
parent | 10de0d31d59fae02f101b78ee9d70a2b084db4c6 (diff) | |
download | drakx-8d9948a4c4ac65c3cc7d310635d5e90acd4efeae.tar drakx-8d9948a4c4ac65c3cc7d310635d5e90acd4efeae.tar.gz drakx-8d9948a4c4ac65c3cc7d310635d5e90acd4efeae.tar.bz2 drakx-8d9948a4c4ac65c3cc7d310635d5e90acd4efeae.tar.xz drakx-8d9948a4c4ac65c3cc7d310635d5e90acd4efeae.zip |
oops, fix type of installing X or not
-rw-r--r-- | perl-install/install_any.pm | 2 |
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(); |