mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-23 21:17:11 -05:00
gnu: glibc: Add $TZDIR native search path.
* gnu/packages/base.scm (glibc) [native-search-paths]: Add $TZDIR.
This commit is contained in:
parent
2fc51b1ef3
commit
80961d40f2
1 changed files with 3 additions and 1 deletions
|
@ -71,6 +71,7 @@ (define-module (gnu packages base)
|
|||
#: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 @@ (define (linker-script? file)
|
|||
;; distros.
|
||||
(list (search-path-specification
|
||||
(variable "GUIX_LOCPATH")
|
||||
(files '("lib/locale")))))
|
||||
(files '("lib/locale")))
|
||||
$TZDIR))
|
||||
|
||||
(synopsis "The GNU C Library")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue