build-system/texlive: Use invoke instead of system*.

* guix/build/texlive-build-system.scm (compile-with-latex): Use invoke.
This commit is contained in:
Mark H Weaver 2018-03-16 03:25:23 -04:00
parent e35b09ca71
commit 68ca0efa9a
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 5 additions and 5 deletions

View File

@ -34,11 +34,11 @@
;; Code:
(define (compile-with-latex format file)
(zero? (system* format
(invoke format
"-interaction=batchmode"
"-output-directory=build"
(string-append "&" format)
file)))
file))
(define* (configure #:key inputs #:allow-other-keys)
(let* ((out (string-append (getcwd) "/.texlive-union"))