gnu: glibc: Add $TZDIR native search path.

* gnu/packages/base.scm (glibc) [native-search-paths]: Add $TZDIR.
This commit is contained in:
Maxim Cournoyer 2023-09-12 10:07:38 -04:00 committed by Ludovic Courtès
parent 2fc51b1ef3
commit 80961d40f2
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5

View File

@ -71,6 +71,7 @@
#:use-module (guix git-download)
#:use-module (guix build-system gnu)
#:use-module (guix build-system trivial)
#:use-module (guix search-paths)
#:use-module (ice-9 format)
#:use-module (ice-9 match)
#:use-module (ice-9 optargs)
@ -1102,7 +1103,8 @@ the store.")
;; distros.
(list (search-path-specification
(variable "GUIX_LOCPATH")
(files '("lib/locale")))))
(files '("lib/locale")))
$TZDIR))
(synopsis "The GNU C Library")
(description