From 1574932debdabcabbcd1cbc64b309c649c1a94f2 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 15 Jan 2019 12:45:39 +0100 Subject: gnu: texlive-bin: Do not truncate output lines. * gnu/packages/tex.scm (texlive-bin)[arguments]: Change default line limits in build phase. --- gnu/packages/tex.scm | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index df5a3d8e3a..b7cec6cb9e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -211,6 +211,11 @@ (define-public texlive-bin (unpack (assoc-ref %standard-phases 'unpack)) (patch-source-shebangs (assoc-ref %standard-phases 'patch-source-shebangs))) + (substitute* (string-append share "/texmf-dist/web2c/texmf.cnf") + ;; Don't truncate lines. + (("^error_line = .*$") "error_line = 254\n") + (("^half_error_line = .*$") "half_error_line = 238\n") + (("^max_print_line = .*$") "max_print_line = 1000\n")) ;; Create symbolic links for the latex variants and their ;; man pages. (with-directory-excursion (string-append out "/bin/") -- cgit v1.2.3