diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-10 22:41:23 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-10 22:43:09 +0100 |
commit | ac5c9f6ba6e80f9e7255442a4e0f0f3aeb2960d5 (patch) | |
tree | 6e8c8414f95f429a065d3c6131e57a14edd43193 /guix/build | |
parent | d4d9a1ece0dbf0bc65cc98e971e88a1406bb9c27 (diff) |
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.
Diffstat (limited to 'guix/build')
-rw-r--r-- | guix/build/texlive-build-system.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/guix/build/texlive-build-system.scm b/guix/build/texlive-build-system.scm index 1c393ecd9d..a7cb8dd1ad 100644 --- a/guix/build/texlive-build-system.scm +++ b/guix/build/texlive-build-system.scm @@ -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) |