mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: texinfo: Disable tests on GNU/Hurd.
* gnu/packages/texinfo.scm (texinfo)[arguments]: Add #:tests? argument.
This commit is contained in:
parent
b5e334aeb8
commit
ed6fdf3aef
1 changed files with 5 additions and 1 deletions
|
@ -40,6 +40,7 @@ (define-module (gnu packages texinfo)
|
|||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages gettext)
|
||||
#:use-module ((gnu packages hurd) #:select (hurd-target?))
|
||||
#:use-module (gnu packages ncurses)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages readline))
|
||||
|
@ -71,7 +72,10 @@ (define-public texinfo
|
|||
(("env -i")
|
||||
"env "))
|
||||
#t)))
|
||||
%standard-phases)))
|
||||
%standard-phases)
|
||||
|
||||
;; XXX: Work around <https://issues.guix.gnu.org/59616>.
|
||||
#:tests? ,(not (hurd-target?))))
|
||||
(inputs (list ncurses perl))
|
||||
;; When cross-compiling, texinfo will build some of its own binaries with
|
||||
;; the native compiler. This means ncurses is needed both in both inputs
|
||||
|
|
Loading…
Reference in a new issue