gnu: texinfo, info-reader: Do not run tests when cross-compiling.
Fixes a regression introduced in
a3264f31df
.
Reported by Mathieu Othacehe <othacehe@gnu.org>.
* gnu/packages/texinfo.scm (texinfo)[arguments]: Change #:tests? to not
run tests when cross-compiling.
master
parent
9ad14196ce
commit
fe563a87ad
|
@ -75,7 +75,8 @@
|
||||||
%standard-phases)
|
%standard-phases)
|
||||||
|
|
||||||
;; XXX: Work around <https://issues.guix.gnu.org/59616>.
|
;; XXX: Work around <https://issues.guix.gnu.org/59616>.
|
||||||
#:tests? ,(not (hurd-target?))))
|
#:tests? ,(and (not (hurd-target?))
|
||||||
|
(not (%current-target-system)))))
|
||||||
(inputs (list ncurses perl))
|
(inputs (list ncurses perl))
|
||||||
;; When cross-compiling, texinfo will build some of its own binaries with
|
;; When cross-compiling, texinfo will build some of its own binaries with
|
||||||
;; the native compiler. This means ncurses is needed both in both inputs
|
;; the native compiler. This means ncurses is needed both in both inputs
|
||||||
|
|
Reference in New Issue