mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: commencement: Avoid cyclic dependency when targeting i586-pc-gnu.
Fixes a regression introduced in
95ea1277ae
where:
guix build coreutils --target=i586-pc-gnu coreutils
would never complete due to a dependency loop introduced in
‘%final-inputs’.
* gnu/packages/commencement.scm (%final-inputs): Pass argument to
‘target-hurd?’.
Change-Id: I4df7907fb9afcd2b170ba19307666eaa81f12d41
This commit is contained in:
parent
39ca9a964d
commit
625a847d2a
1 changed files with 1 additions and 1 deletions
|
@ -3496,7 +3496,7 @@ (define-public %final-inputs
|
|||
("gcc" ,gcc-final)
|
||||
("libc" ,glibc-final)
|
||||
("libc:static" ,glibc-final "static")
|
||||
("locales" ,(if (target-hurd?)
|
||||
("locales" ,(if (target-hurd? (%current-system))
|
||||
glibc-utf8-locales-final/hurd
|
||||
glibc-utf8-locales-final)))))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue