gnu: texlive-xmltex: Remove useless binding.

* gnu/packages/tex.scm (texlive-xmltex)[arguments]<#:phases>: Remove useless binding.

Change-Id: I5088d42203b85157f89c5ddcbdb66666dc886504
This commit is contained in:
Nicolas Goaziou 2024-06-23 11:26:38 +02:00 committed by Ludovic Courtès
parent 711b168c08
commit 6fcf1d0943
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -58966,8 +58966,7 @@ (define-public texlive-xmltex
#~(modify-phases %standard-phases
(add-after 'install 'install-wrappers
(lambda* (#:key inputs #:allow-other-keys)
(let ((pdftex (search-input-file inputs "/bin/pdftex"))
(web2c (string-append #$output "/share/texmf-dist/web2c")))
(let ((pdftex (search-input-file inputs "/bin/pdftex")))
(mkdir-p (string-append #$output "/bin"))
(symlink pdftex (string-append #$output "/bin/xmltex"))
(symlink pdftex (string-append #$output "/bin/pdfxmltex"))))))))