mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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.
This commit is contained in:
parent
32de7edf02
commit
7cad705663
1 changed files with 4 additions and 3 deletions
|
@ -3,7 +3,7 @@
|
||||||
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
||||||
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2016 Roel Janssen <roel@gnu.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 Federico Beffa <beffa@fbengineering.ch>
|
||||||
;;; Copyright © 2016 Thomas Danckaert <post@thomasdanckaert.be>
|
;;; Copyright © 2016 Thomas Danckaert <post@thomasdanckaert.be>
|
||||||
;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus <rekado@elephly.net>
|
||||||
|
@ -313,8 +313,9 @@ (define texlivetexmf
|
||||||
(texlive-bin (assoc-ref inputs "texlive-bin"))
|
(texlive-bin (assoc-ref inputs "texlive-bin"))
|
||||||
(texbin (string-append texlive-bin "/bin"))
|
(texbin (string-append texlive-bin "/bin"))
|
||||||
(tlpkg (string-append texlive-bin "/share/tlpkg")))
|
(tlpkg (string-append texlive-bin "/share/tlpkg")))
|
||||||
;; LuaJIT is not ported to powerpc64* yet.
|
;; LuaJIT is not ported to some systems yet.
|
||||||
(if ,(target-ppc64le?)
|
(if ,(or (target-ppc64le?)
|
||||||
|
(target-riscv64?))
|
||||||
(substitute* fmtutilcnf
|
(substitute* fmtutilcnf
|
||||||
(("^(luajittex|luajithbtex|mfluajit)" m)
|
(("^(luajittex|luajithbtex|mfluajit)" m)
|
||||||
(string-append "#! " m))))
|
(string-append "#! " m))))
|
||||||
|
|
Loading…
Reference in a new issue