gnu: texlive-fonts-ec: Remove vestigial error code plumbing.

* gnu/packages/tex.scm (texlive-fonts-ec)[arguments]: Remove vestigial error
code plumbing.
master
Mark H Weaver 2018-03-23 04:04:28 -04:00
parent ff440d62dc
commit c4fc86e4f8
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 11 additions and 10 deletions

View File

@ -2913,16 +2913,17 @@ in SGML; use maths minus in text as appropriate; simple Young tableaux.")
(assoc-ref inputs "texlive-fonts-cm")
"/share/texmf-dist/fonts/source/public/cm")))
(mkdir "build")
(every (lambda (font)
(format #t "building font ~a\n" font)
(invoke "mf" "-progname=mf"
"-output-directory=build"
(string-append "\\"
"mode:=ljfour; "
"mag:=1; "
"batchmode; "
"input " (basename font ".mf"))))
(find-files "." "[0-9]+\\.mf$"))))
(for-each (lambda (font)
(format #t "building font ~a\n" font)
(invoke "mf" "-progname=mf"
"-output-directory=build"
(string-append "\\"
"mode:=ljfour; "
"mag:=1; "
"batchmode; "
"input " (basename font ".mf"))))
(find-files "." "[0-9]+\\.mf$"))
#t))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))