diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2018-03-14 21:00:29 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2018-03-14 21:16:52 +0200 |
commit | d5fb4a3a9f202e0246e93a0a5537c72a92aa319e (patch) | |
tree | d64783f01808be0833a5df34c05a078c277bcadd /gnu/packages/tex.scm | |
parent | e26de9c928c996c157a3067b41836950baed7f02 (diff) | |
download | patches-d5fb4a3a9f202e0246e93a0a5537c72a92aa319e.tar patches-d5fb4a3a9f202e0246e93a0a5537c72a92aa319e.tar.gz |
gnu: texlive-fonts-rsfs: Use 'invoke'.
* gnu/packages/tex.scm (texlive-fonts-rsfs)[arguments]: Use 'invoke' in
place of 'system*'.
Diffstat (limited to 'gnu/packages/tex.scm')
-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 aec74912a3..da55e52b33 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2995,13 +2995,13 @@ texlive-2017.1/Master/texmf-dist/doc/fonts/ec/copyrite.txt")))) (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) |