summaryrefslogtreecommitdiffstats
path: root/perl-install/install/install2.pm
diff options
context:
space:
mode:
authorMartin Whitaker <mageia@martin-whitaker.me.uk>2026-01-20 20:48:33 +0000
committerMartin Whitaker <mageia@martin-whitaker.me.uk>2026-01-20 20:48:33 +0000
commitda2eb0f9b8340362023e487886b69ca28d97a2e2 (patch)
tree322415ea6416d02e17ae08a1374d7df494097eaa /perl-install/install/install2.pm
parent02bb097e1823dc1314dff43992bdaafe97e0f21e (diff)
downloaddrakx-da2eb0f9b8340362023e487886b69ca28d97a2e2.tar
drakx-da2eb0f9b8340362023e487886b69ca28d97a2e2.tar.gz
drakx-da2eb0f9b8340362023e487886b69ca28d97a2e2.tar.bz2
drakx-da2eb0f9b8340362023e487886b69ca28d97a2e2.tar.xz
drakx-da2eb0f9b8340362023e487886b69ca28d97a2e2.zip
installer: fix hwclock parameters in selectTimezone().
Thanks to tv for spotting.
Diffstat (limited to 'perl-install/install/install2.pm')
-rw-r--r--perl-install/install/install2.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm
index d253cc1c6..31ebe3fea 100644
--- a/perl-install/install/install2.pm
+++ b/perl-install/install/install2.pm
@@ -226,7 +226,7 @@ sub selectTimezone {
#- reload the system clock from the HW clock now we know the real timezone
local $ENV{TZ} = ':' . $o->{timezone}{timezone};
- run_program::run('hwclock', '--hctosys', '--noadjfile', ($t->{UTC} ? '--utc' : '--localtime'));
+ run_program::run('hwclock', '--hctosys', '--noadjfile', ($o->{timezone}{UTC} ? '--utc' : '--localtime'));
}
#------------------------------------------------------------------------------