mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 18:02:12 +01:00
Depending on the version of glibc, localtime_r() must be preceded by a call to tzset() or it will ignore any value of TZ in the environment. This problem will only be seen when building file-native on outdated hosts. (From OE-Core rev: 791145f3064d7807630d3591b9e7c7b2dc37152c) Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
811 B
Diff
28 lines
811 B
Diff
From e329257b8e22362b62e6c930447ef6feadd63f32 Mon Sep 17 00:00:00 2001
|
|
From: Joe Slater <joe.slater@windriver.com>
|
|
Date: Mon, 7 Aug 2023 22:37:19 +0000
|
|
Subject: [PATCH] print.c: initialize timezone data for localtime_r()
|
|
|
|
The man page for localtime() points out that while it acts
|
|
like tzset() has been called, localtime_r() might not. We
|
|
have a local version of localtime_r() that avoids this, but
|
|
we do not compile it.
|
|
|
|
Upstream-Status: Submitted [file@astron.com]
|
|
|
|
Signed-off-by: Joe Slater <joe.slater@windriver.com>
|
|
---
|
|
src/print.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- git.orig/src/print.c
|
|
+++ git/src/print.c
|
|
@@ -289,6 +289,7 @@ file_fmtdatetime(char *buf, size_t bsize
|
|
goto out;
|
|
|
|
if (flags & FILE_T_LOCAL) {
|
|
+ tzset();
|
|
tm = localtime_r(&t, &tmz);
|
|
} else {
|
|
tm = gmtime_r(&t, &tmz);
|