me
/
guix
Archived
1
0
Fork 0

gnu: texlive-fonts-ec: Use 'invoke'.

* gnu/packages/tex.scm (texlive-fonts-ec)[arguments]: Use 'invoke' in
place of 'system*'.
master
Efraim Flashner 2018-03-14 20:56:14 +02:00
parent ca816eb3ca
commit 6f2442a1fd
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 7 deletions

View File

@ -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)