build-system: texlive: Do not truncate lines.

* guix/build/texlive-build-system.scm (configure): Set environment variables
to prevent build output lines from being truncated.
This commit is contained in:
Ricardo Wurmus 2019-01-10 22:41:23 +01:00
parent d4d9a1ece0
commit ac5c9f6ba6
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -60,7 +60,12 @@ (define* (configure #:key inputs #:allow-other-keys)
(("^TEXMF = .*")
"TEXMF = $TEXMFROOT/share/texmf-dist\n"))
(setenv "TEXMFCNF" (dirname texmf.cnf))
(setenv "TEXMF" (string-append out "/share/texmf-dist")))
(setenv "TEXMF" (string-append out "/share/texmf-dist"))
;; Don't truncate lines.
(setenv "error_line" "254") ; must be less than 255
(setenv "half_error_line" "238") ; must be less than error_line - 15
(setenv "max_print_line" "1000"))
(mkdir "build")
#t)