guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

11/18: gnu: texlive-latex-base: Fix compilation on powerpc64le*.


From: guix-commits
Subject: 11/18: gnu: texlive-latex-base: Fix compilation on powerpc64le*.
Date: Wed, 10 Mar 2021 10:25:05 -0500 (EST)

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

commit 0cfe865ebc79f066e57e069b966a2994cd6667f3
Author: Leo Le Bouter <lle-bout@zaclys.net>
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 <cmmarusich@gmail.com>
---
 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 <bavier@member.fsf.org>
 ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
-;;; Copyright © 2016, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016, 2018, 2019, 2020, 2021 Efraim Flashner 
<efraim@flashner.co.il>
 ;;; Copyright © 2016 Federico Beffa <beffa@fbengineering.ch>
 ;;; Copyright © 2016 Thomas Danckaert <post@thomasdanckaert.be>
 ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus 
<rekado@elephly.net>
@@ -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

[Prev in Thread] Current Thread [Next in Thread]