]> Lady’s Gitweb - Shushe/commitdiff
Fix time·zone handling
authorLady <redacted>
Sun, 15 Dec 2024 00:31:21 +0000 (19:31 -0500)
committerLady <redacted>
Sun, 15 Dec 2024 00:31:21 +0000 (19:31 -0500)
The variable `UTC0` was mistakenly exported, instead of `TZ` (which has
the _value_ `UTC0` and controls the time·zone of Posix commands).

GNUmakefile

index f7809ed774f0e01ea81d10fe8a20f857b26664d3..fac149164e2a1152f8c83d22ab496702c2a3dbf6 100644 (file)
@@ -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
This page took 0.036264 seconds and 4 git commands to generate.