gnu: texlive-texmf: Fix build.
This is a follow-up to commit a1b4d62cda
.
* gnu/packages/tex.scm (texlive-texmf)[arguments]: Unset texlive-bin search
path.
This commit is contained in:
parent
560df540a6
commit
977403feb2
|
@ -4472,6 +4472,11 @@ directly generate PDF documents instead of DVI.")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases (map (cut assq <> %standard-phases)
|
(modify-phases (map (cut assq <> %standard-phases)
|
||||||
'(set-paths unpack patch-source-shebangs))
|
'(set-paths unpack patch-source-shebangs))
|
||||||
|
(add-after 'unpack 'unset-environment-variables
|
||||||
|
(lambda _
|
||||||
|
(unsetenv "TEXMF")
|
||||||
|
(unsetenv "TEXMFCNF")
|
||||||
|
#t))
|
||||||
(add-after 'patch-source-shebangs 'install
|
(add-after 'patch-source-shebangs 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((share (string-append (assoc-ref outputs "out") "/share")))
|
(let ((share (string-append (assoc-ref outputs "out") "/share")))
|
||||||
|
|
Loading…
Reference in New Issue