guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Mark H. Weaver
Subject: 60/66: gnu: texlive-fonts-ec: Remove vestigial error code plumbing.
Date: Fri, 23 Mar 2018 04:46:48 -0400 (EDT)

mhw pushed a commit to branch core-updates
in repository guix.

commit c4fc86e4f8f5184f46f6c18b9c06d4dcc0e143e6
Author: Mark H Weaver <address@hidden>
Date:   Fri Mar 23 04:04:28 2018 -0400

    gnu: texlive-fonts-ec: Remove vestigial error code plumbing.
    
    * gnu/packages/tex.scm (texlive-fonts-ec)[arguments]: Remove vestigial error
    code plumbing.
---
 gnu/packages/tex.scm | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 6d3ec93..29792cb 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -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"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]