gnu: glibc-utf8-locales: Fix cross-compilation.
* gnu/packages/base.scm (glibc-utf8-locales)[inputs]: Move to ... [native-inputs]: ... here, in order to fix cross-compilation. * gnu/packages/commencement.scm (glibc-utf8-locales-final)[inputs]: Move to ... [native-inputs]: ... here, in order to fix cross-compilation.
This commit is contained in:
parent
e94b95473e
commit
58a75996ec
|
@ -1143,8 +1143,8 @@ to the @code{share/locale} sub-directory of this package.")
|
||||||
;; tests---e.g., in Guile's i18n tests.
|
;; tests---e.g., in Guile's i18n tests.
|
||||||
'("de_DE" "el_GR" "en_US" "fr_FR" "tr_TR"))
|
'("de_DE" "el_GR" "en_US" "fr_FR" "tr_TR"))
|
||||||
#t))))
|
#t))))
|
||||||
(inputs `(("glibc" ,glibc)
|
(native-inputs `(("glibc" ,glibc)
|
||||||
("gzip" ,gzip)))
|
("gzip" ,gzip)))
|
||||||
(synopsis "Small sample of UTF-8 locales")
|
(synopsis "Small sample of UTF-8 locales")
|
||||||
(description
|
(description
|
||||||
"This package provides a small sample of UTF-8 locales mostly useful in
|
"This package provides a small sample of UTF-8 locales mostly useful in
|
||||||
|
|
|
@ -882,11 +882,12 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%"
|
||||||
;; function.)
|
;; function.)
|
||||||
(package
|
(package
|
||||||
(inherit glibc-utf8-locales)
|
(inherit glibc-utf8-locales)
|
||||||
(inputs `(("glibc" ,glibc-final)
|
(native-inputs
|
||||||
("gzip"
|
`(("glibc" ,glibc-final)
|
||||||
,(package-with-explicit-inputs gzip %boot4-inputs
|
("gzip"
|
||||||
(current-source-location)
|
,(package-with-explicit-inputs gzip %boot4-inputs
|
||||||
#:guile %bootstrap-guile))))))
|
(current-source-location)
|
||||||
|
#:guile %bootstrap-guile))))))
|
||||||
|
|
||||||
(define-public ld-wrapper
|
(define-public ld-wrapper
|
||||||
;; The final 'ld' wrapper, which uses the final Guile and Binutils.
|
;; The final 'ld' wrapper, which uses the final Guile and Binutils.
|
||||||
|
|
Loading…
Reference in New Issue