gnu: texlive-latex-base: Disable some formats on powerpc-linux.

* gnu/packages/tex.scm (texlive-latex-base)[arguments]: Adjust custom
'build phase to skip the jit formats also on powerpc-linux.
This commit is contained in:
Efraim Flashner 2021-08-17 13:41:57 +03:00
parent ab18997f1c
commit 38add920bc
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2742,10 +2742,9 @@ (define-public texlive-latex-base
"platex-dev eptex" "uplatex-dev euptex"
"csplain pdftex" "mf mf-nowin" "mex pdftex" "pdfmex pdftex"
"luacsplain luatex" "optex luatex"
;; LuaJIT is not ported to powerpc64le* yet.
,@(if (string-prefix? "powerpc64le"
(or (%current-target-system)
(%current-system)))
;; LuaJIT is not ported to powerpc64le* yet and
;; building these fail on powerpc.
,@(if (target-powerpc?)
'("luajittex" "luajithbtex" "mfluajit") '())
"cont-en xetex" "cont-en pdftex" "pdfcsplain xetex"
"pdfcsplain pdftex" "pdfcsplain luatex" "cslatex pdftex"