mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -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 git-download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
|
#:use-module (guix search-paths)
|
||||||
#:use-module (ice-9 format)
|
#:use-module (ice-9 format)
|
||||||
#:use-module (ice-9 match)
|
#:use-module (ice-9 match)
|
||||||
#:use-module (ice-9 optargs)
|
#:use-module (ice-9 optargs)
|
||||||
|
@ -1102,7 +1103,8 @@ (define (linker-script? file)
|
||||||
;; distros.
|
;; distros.
|
||||||
(list (search-path-specification
|
(list (search-path-specification
|
||||||
(variable "GUIX_LOCPATH")
|
(variable "GUIX_LOCPATH")
|
||||||
(files '("lib/locale")))))
|
(files '("lib/locale")))
|
||||||
|
$TZDIR))
|
||||||
|
|
||||||
(synopsis "The GNU C Library")
|
(synopsis "The GNU C Library")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue