gnu: commencement: Disable Texinfo tests during bootstrap.
* gnu/packages/commencement.scm (texinfo-boot0): Add #:tests? #f.
This commit is contained in:
parent
8f03b70b02
commit
5d6c4d3794
|
@ -306,7 +306,12 @@
|
||||||
;; Also, use %BOOT0-INPUTS to avoid building Perl once more.
|
;; Also, use %BOOT0-INPUTS to avoid building Perl once more.
|
||||||
(let ((texinfo (package (inherit texinfo)
|
(let ((texinfo (package (inherit texinfo)
|
||||||
(native-inputs '())
|
(native-inputs '())
|
||||||
(inputs `(("perl" ,perl-boot0))))))
|
(inputs `(("perl" ,perl-boot0)))
|
||||||
|
|
||||||
|
;; Some of Texinfo 6.1's tests would fail with "Couldn't
|
||||||
|
;; set UTF-8 character type in locale" but we don't have a
|
||||||
|
;; UTF-8 locale at this stage, so skip them.
|
||||||
|
(arguments '(#:tests? #f)))))
|
||||||
(package-with-bootstrap-guile
|
(package-with-bootstrap-guile
|
||||||
(package-with-explicit-inputs texinfo %boot0-inputs
|
(package-with-explicit-inputs texinfo %boot0-inputs
|
||||||
(current-source-location)
|
(current-source-location)
|
||||||
|
|
Loading…
Reference in New Issue