mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: texlive-fonts-ec: Use 'invoke'.
* gnu/packages/tex.scm (texlive-fonts-ec)[arguments]: Use 'invoke' in place of 'system*'.
This commit is contained in:
parent
ca816eb3ca
commit
6f2442a1fd
1 changed files with 7 additions and 7 deletions
|
@ -2913,13 +2913,13 @@ (define-public texlive-fonts-ec
|
|||
(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)
|
||||
|
|
Loading…
Reference in a new issue