efraim pushed a commit to branch wip-ppc64le-for-master
in repository guix.

commit 0cfe865ebc79f066e57e069b966a2994cd6667f3
Author: Leo Le Bouter <[email protected]>
AuthorDate: Mon Feb 8 04:47:03 2021 +0100

    gnu: texlive-latex-base: Fix compilation on powerpc64le*.
    
    * gnu/packages/tex.scm (texlive-latex-base)[arguments]: LuaJIT is not 
ported to
    powerpc64le* yet. Update replacement 'build phase to add "luajittex" within 
the
    "disabled-formats" list on powerpc64le*.
    
    Signed-off-by: Chris Marusich <[email protected]>
---
 gnu/packages/tex.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 508537a..86cb1ee 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -3,7 +3,7 @@
 ;;; Copyright © 2014 Eric Bavier <[email protected]>
 ;;; Copyright © 2015 Mark H Weaver <[email protected]>
 ;;; Copyright © 2016 Roel Janssen <[email protected]>
-;;; Copyright © 2016, 2018, 2019, 2020 Efraim Flashner <[email protected]>
+;;; Copyright © 2016, 2018, 2019, 2020, 2021 Efraim Flashner 
<[email protected]>
 ;;; Copyright © 2016 Federico Beffa <[email protected]>
 ;;; Copyright © 2016 Thomas Danckaert <[email protected]>
 ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus 
<[email protected]>
@@ -2520,6 +2520,10 @@ formats.")
                           "eptex eptex" "ptex ptex" "pdfxmltex pdftex" "platex 
eptex"
                           "csplain pdftex" "mf mf-nowin" "mex pdftex" "pdfmex 
pdftex"
                           "luacsplain luatex"
+                          ,@(if (string-prefix? "powerpc64le"
+                                                (or (%current-target-system)
+                                                    (%current-system)))
+                              '("luajittex") '())
                           "cont-en xetex" "cont-en pdftex" "pdfcsplain xetex"
                           "pdfcsplain pdftex" "pdfcsplain luatex" "cslatex 
pdftex"
                           "mptopdf pdftex" "uplatex euptex" "jadetex pdftex"

Reply via email to