diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-06-23 11:26:38 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:39 +0200 |
commit | 6fcf1d094318356e9c0561183caee54982286524 (patch) | |
tree | f8707f8430af6e4d7376e56b6c62f2ef2910aa0d /gnu | |
parent | 711b168c08d41ee9afdb746ca6d1a23e0bb2fa57 (diff) | |
download | guix-6fcf1d094318356e9c0561183caee54982286524.tar guix-6fcf1d094318356e9c0561183caee54982286524.tar.gz |
gnu: texlive-xmltex: Remove useless binding.
* gnu/packages/tex.scm (texlive-xmltex)[arguments]<#:phases>: Remove useless binding.
Change-Id: I5088d42203b85157f89c5ddcbdb66666dc886504
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 2696c0799a..c69e1ed2a8 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -58966,8 +58966,7 @@ and @code{pdfxmltex}.") #~(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")))))))) |