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.master
parent
d4d9a1ece0
commit
ac5c9f6ba6
|
@ -60,7 +60,12 @@
|
|||
(("^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)
|
||||
|
||||
|
|
Reference in New Issue