mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-22 02:07:56 +01:00
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:
parent
ab18997f1c
commit
38add920bc
1 changed files with 3 additions and 4 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue