guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: texlivetexmf: Fix building on riscv64-linux.


From: guix-commits
Subject: 02/02: gnu: texlivetexmf: Fix building on riscv64-linux.
Date: Sun, 20 Aug 2023 20:30:10 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 7cad70566322262f6acdbbb965e867e34010eb55
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Aug 21 03:18:59 2023 +0300

    gnu: texlivetexmf: Fix building on riscv64-linux.
    
    * gnu/packages/texlive.scm (texlivetexmf)[arguments]: Adjust the custom
    'texlive-texmf phase to skip targets dependant on luajit when building
    for riscv64-linux.
---
 gnu/packages/texlive.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/texlive.scm b/gnu/packages/texlive.scm
index 0204a256ef..1a50eb454f 100644
--- a/gnu/packages/texlive.scm
+++ b/gnu/packages/texlive.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, 2021 Efraim Flashner 
<efraim@flashner.co.il>
+;;; Copyright © 2016, 2018-2021, 2023 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, 2021 Ricardo Wurmus 
<rekado@elephly.net>
@@ -313,8 +313,9 @@ This package contains the binaries.")
                      (texlive-bin (assoc-ref inputs "texlive-bin"))
                      (texbin (string-append texlive-bin "/bin"))
                      (tlpkg (string-append texlive-bin "/share/tlpkg")))
-                ;; LuaJIT is not ported to powerpc64* yet.
-                (if ,(target-ppc64le?)
+                ;; LuaJIT is not ported to some systems yet.
+                (if ,(or (target-ppc64le?)
+                         (target-riscv64?))
                     (substitute* fmtutilcnf
                       (("^(luajittex|luajithbtex|mfluajit)" m)
                        (string-append "#! " m))))



reply via email to

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