diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-21 11:34:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-21 11:34:26 +0000 |
commit | baa29963dde07354dbdd4d7bb17388d17a7f43a4 (patch) | |
tree | 7fa4c44746df7edd3777c97ad5bca63ec3a6f925 /perl-install | |
parent | a100c96209161f03d9f158b6a70fb464c318ceb8 (diff) | |
download | drakx-baa29963dde07354dbdd4d7bb17388d17a7f43a4.tar drakx-baa29963dde07354dbdd4d7bb17388d17a7f43a4.tar.gz drakx-baa29963dde07354dbdd4d7bb17388d17a7f43a4.tar.bz2 drakx-baa29963dde07354dbdd4d7bb17388d17a7f43a4.tar.xz drakx-baa29963dde07354dbdd4d7bb17388d17a7f43a4.zip |
don't prompt for license when useless_thing_accepted
(this used to be done in install_steps_interactive::acceptLicense)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 2558fc39d..851b9fe1b 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -92,7 +92,7 @@ sub selectLanguage { sub acceptLicense { my ($_clicked, $_ent_number, $auto) = @_; - installStepsCall($o, $auto, 'acceptLicense'); + installStepsCall($o, $auto, 'acceptLicense') if !$o->{useless_thing_accepted}; } #------------------------------------------------------------------------------ |