diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2018-03-14 20:56:14 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2018-03-14 21:16:52 +0200 |
commit | 6f2442a1fdb09d5982e163f1e87426ffc9f32d1d (patch) | |
tree | b3d6b7bae9b66296e79299467dc6cdb10e97ecfa | |
parent | ca816eb3caa96a6cd4493c0a17a2881113b5844c (diff) | |
download | guix-6f2442a1fdb09d5982e163f1e87426ffc9f32d1d.tar guix-6f2442a1fdb09d5982e163f1e87426ffc9f32d1d.tar.gz |
gnu: texlive-fonts-ec: Use 'invoke'.
* gnu/packages/tex.scm (texlive-fonts-ec)[arguments]: Use 'invoke' in
place of 'system*'.
-rw-r--r-- | gnu/packages/tex.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8bb172aedc..828c70df26 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2913,13 +2913,13 @@ in SGML; use maths minus in text as appropriate; simple Young tableaux.") (mkdir "build") (every (lambda (font) (format #t "building font ~a\n" font) - (zero? (system* "mf" "-progname=mf" - "-output-directory=build" - (string-append "\\" - "mode:=ljfour; " - "mag:=1; " - "batchmode; " - "input " (basename font ".mf"))))) + (invoke "mf" "-progname=mf" + "-output-directory=build" + (string-append "\\" + "mode:=ljfour; " + "mag:=1; " + "batchmode; " + "input " (basename font ".mf")))) (find-files "." "[0-9]+\\.mf$")))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) |