From: Lady Date: Sun, 15 Dec 2024 00:31:21 +0000 (-0500) Subject: Fix time·zone handling X-Git-Tag: 0.13.3~2 X-Git-Url: https://git.ladys.computer/Shushe/commitdiff_plain/d8f8ff2443740df40b41e7bedfd71f4b3422031f?hp=1b37857b238cae679dedf2c837358ad30212e134 Fix time·zone handling The variable `UTC0` was mistakenly exported, instead of `TZ` (which has the _value_ `UTC0` and controls the time·zone of Posix commands). --- diff --git a/GNUmakefile b/GNUmakefile index f7809ed..fac1491 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -275,7 +275,7 @@ export LC_ALL # Posix timezone information. TZ := UTC0 -export UTC0 +export TZ # The default target for this makefile. .DEFAULT_GOAL := all