mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 08:51:48 -05:00
gnu: texlive-bin: Skip faulty tests on armhf-linux.
Fixes <https://issues.guix.gnu.org/54055>. Reported by Christopher Baines <mail@cbaines.net>. * gnu/packages/tex.scm (texlive-bin)[arguments]: When 'target-arm32?' is true, add 'skip-faulty-test' phase.
This commit is contained in:
parent
ee6275c974
commit
ca6de276db
1 changed files with 12 additions and 0 deletions
|
@ -436,6 +436,18 @@ (define (substitute-commands scripts)
|
|||
(lambda _
|
||||
(substitute* "texk/kpathsea/config.h"
|
||||
(("#define ST_NLINK_TRICK") ""))))
|
||||
|
||||
,@(if (target-arm32?)
|
||||
`((add-after 'unpack 'skip-faulty-test
|
||||
(lambda _
|
||||
;; Skip this faulty test on armhf-linux:
|
||||
;; https://issues.guix.gnu.org/54055
|
||||
(substitute* '("texk/mendexk/tests/mendex.test"
|
||||
"texk/upmendex/tests/upmendex.test")
|
||||
(("^TEXMFCNF=" all)
|
||||
(string-append "exit 77 # skip\n" all))))))
|
||||
'())
|
||||
|
||||
(add-after 'check 'customize-texmf.cnf
|
||||
;; The default texmf.cnf is provided by this package, texlive-bin.
|
||||
;; Every variable of interest is set relatively to the GUIX_TEXMF
|
||||
|
|
Loading…
Reference in a new issue