From da2eb0f9b8340362023e487886b69ca28d97a2e2 Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Tue, 20 Jan 2026 20:48:33 +0000 Subject: installer: fix hwclock parameters in selectTimezone(). Thanks to tv for spotting. --- perl-install/install/install2.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/install/install2.pm') 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')); } #------------------------------------------------------------------------------ -- cgit v1.2.1