diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-09-05 23:48:34 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-10-15 18:40:08 +0200 |
commit | 7749477876247199b0726d8dc6e93991a0c0c0f2 (patch) | |
tree | 6a031f2fb963d85aebc56d679916c10fd766b23a /gnu/services | |
parent | 40a0b440ba7aef484572d3ee63a6b51e938a0a0b (diff) | |
download | guix-7749477876247199b0726d8dc6e93991a0c0c0f2.tar guix-7749477876247199b0726d8dc6e93991a0c0c0f2.tar.gz |
services: nscd: When cross-compiling, Use (cross-libc target).
* gnu/services/base.scm (nscd-configuration)[glibc]: When cross-compiling,
Use (cross-libc target).
Change-Id: Ib219459b1ec28f7edfac075e70be3d61edf72d27
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/base.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm index 819d063673..d0a57a8807 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm @@ -21,6 +21,7 @@ ;;; Copyright © 2022 Justin Veilleux <terramorpha@cock.li> ;;; Copyright © 2022 ( <paren@disroot.org> ;;; Copyright © 2023 Bruno Victal <mirai@makinata.eu> +;;; Copyright © 2024 Zheng Junjie <873216071@qq.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -67,6 +68,8 @@ libc-utf8-locales-for-target make-glibc-utf8-locales tar canonical-package)) + #:use-module ((gnu packages cross-base) + #:select (cross-libc)) #:use-module ((gnu packages compression) #:select (gzip)) #:use-module (gnu packages fonts) #:autoload (gnu packages guile-xyz) (guile-netlink) @@ -1317,7 +1320,7 @@ the tty to run, among other things." ;; from 'glibc-final' instead of pulling in a second ;; glibc copy. (if target - glibc + (cross-libc target) (canonical-package glibc)))))) (define-record-type* <nscd-cache> nscd-cache make-nscd-cache |