gnu: commencement: Disable Texinfo tests during bootstrap.

* gnu/packages/commencement.scm (texinfo-boot0): Add #:tests? #f.
master
Ludovic Courtès 2016-04-06 22:22:36 +02:00
parent 8f03b70b02
commit 5d6c4d3794
1 changed files with 6 additions and 1 deletions

View File

@ -306,7 +306,12 @@
;; Also, use %BOOT0-INPUTS to avoid building Perl once more.
(let ((texinfo (package (inherit texinfo)
(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-explicit-inputs texinfo %boot0-inputs
(current-source-location)