gnu: make-bootstrap: Add cross-libc:static to the inputs.

This is a follow-up of 4610ab7c9a. 'getpw' & co
fail with a cross-compiled statically-linked guile.

* gnu/packages/make-bootstrap.scm (package-with-relocatable-glibc)[inputs]:
Add "cross-libc:static".
This commit is contained in:
Mathieu Othacehe 2020-01-03 15:20:18 +01:00
parent aded68b300
commit 8bd2b15b06
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -5,6 +5,7 @@
;;; Copyright © 2018, 2019 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2018, 2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2019 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2020 Mathieu Othacehe <m.othacehe@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@ -137,7 +138,10 @@ (define (cross-bootstrap-libc target)
(define (inputs)
(if (%current-target-system) ; is this package cross built?
`(("cross-libc"
,(cross-bootstrap-libc (%current-target-system))))
,(cross-bootstrap-libc (%current-target-system)))
("cross-libc:static"
,(cross-bootstrap-libc (%current-target-system))
"static"))
'()))
(define (native-inputs)