diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-02-10 12:05:19 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-02-10 12:05:19 +0000 |
commit | 8f31257b7d13cf88f396ea8f131844470b62707e (patch) | |
tree | de31c575e1afdd8fa6aa6c669fd91d11d8258d5d /perl-install/install_any.pm | |
parent | 45baaa8d17d42ce2aa38844cbd4c8de178826874 (diff) | |
download | drakx-8f31257b7d13cf88f396ea8f131844470b62707e.tar drakx-8f31257b7d13cf88f396ea8f131844470b62707e.tar.gz drakx-8f31257b7d13cf88f396ea8f131844470b62707e.tar.bz2 drakx-8f31257b7d13cf88f396ea8f131844470b62707e.tar.xz drakx-8f31257b7d13cf88f396ea8f131844470b62707e.zip |
add preConfigureTimezone
Diffstat (limited to 'perl-install/install_any.pm')
-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 4f9d02047..40929ece8 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -281,7 +281,7 @@ sub preConfigureTimezone { require timezone; #- can't be done in install cuz' timeconfig %post creates funny things - add2hash($o->{timezone}, { timezone::read() }) if $o->{isUpgrade}; + add2hash($o->{timezone}, { timezone::read($o->{prefix}) }) if $o->{isUpgrade}; $o->{timezone}{timezone} ||= timezone::bestTimezone(lang::lang2text($o->{lang})); add2hash_($o->{timezone}, { UTC => $::expert && !grep { isFat($_) || isNT($_) } @{$o->{fstab}} }); |