mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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.
This commit is contained in:
parent
9ad14196ce
commit
fe563a87ad
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue