mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: clang-toolchain: Add 'GUIX_LOCPATH' to the search paths.
* gnu/packages/llvm.scm (make-clang-toolchain)[native-search-paths]: Add 'GUIX_LOCPATH'.
This commit is contained in:
parent
f848c276f0
commit
61a5380bfd
1 changed files with 5 additions and 1 deletions
|
@ -484,7 +484,11 @@ (define (make-clang-toolchain clang)
|
|||
"libc-static")))
|
||||
#t))))
|
||||
|
||||
(native-search-paths (package-native-search-paths clang))
|
||||
(native-search-paths
|
||||
(append (package-native-search-paths clang)
|
||||
(list (search-path-specification ;copied from glibc
|
||||
(variable "GUIX_LOCPATH")
|
||||
(files '("lib/locale"))))))
|
||||
(search-paths (package-search-paths clang))
|
||||
|
||||
(license (package-license clang))
|
||||
|
|
Loading…
Reference in a new issue