gnu: texlive-bin: Patch texlua shebangs.
* gnu/packages/tex.scm (texlive-bin)[arguments]: Patch texlua shebangs in postint phase.
This commit is contained in:
parent
a9fda571c3
commit
b02b6f32a5
1 changed files with 7 additions and 1 deletions
|
@ -206,7 +206,13 @@ (define-public texlive-bin
|
||||||
(with-directory-excursion "texlive-extra"
|
(with-directory-excursion "texlive-extra"
|
||||||
(apply unpack (list #:source texlive-extra))
|
(apply unpack (list #:source texlive-extra))
|
||||||
(apply patch-source-shebangs (list #:source texlive-extra))
|
(apply patch-source-shebangs (list #:source texlive-extra))
|
||||||
(invoke "mv" "tlpkg" share))))))))
|
(invoke "mv" "tlpkg" share))
|
||||||
|
;; texlua shebangs are not patched by the patch-source-shebangs
|
||||||
|
;; phase because the texlua executable does not exist at that
|
||||||
|
;; time.
|
||||||
|
(setenv "PATH" (string-append (getenv "PATH") ":" out "/bin"))
|
||||||
|
(with-directory-excursion out
|
||||||
|
(patch-source-shebangs))))))))
|
||||||
(synopsis "TeX Live, a package of the TeX typesetting system")
|
(synopsis "TeX Live, a package of the TeX typesetting system")
|
||||||
(description
|
(description
|
||||||
"TeX Live provides a comprehensive TeX document production system.
|
"TeX Live provides a comprehensive TeX document production system.
|
||||||
|
|
Loading…
Reference in a new issue