Skip to content
Snippets Groups Projects
Unverified Commit 93ab9a5d authored by Tobias Geerinckx-Rice's avatar Tobias Geerinckx-Rice
Browse files

gnu: kodi: Use INVOKE.

* gnu/packages/kodi.scm (kodi)[arguments]: Substitute INVOKE for SYSTEM*.
parent 2aa137e2
No related branches found
No related tags found
No related merge requests found
...@@ -295,7 +295,7 @@ (define-public kodi ...@@ -295,7 +295,7 @@ (define-public kodi
"lib/cpluff"))) "lib/cpluff")))
(every (lambda (third-party) (every (lambda (third-party)
(with-directory-excursion third-party (with-directory-excursion third-party
(zero? (system* "autoreconf" "-vif")))) (invoke "autoreconf" "-vif")))
dirs)))) dirs))))
(add-after 'bootstrap-bundled-software 'patch-stuff (add-after 'bootstrap-bundled-software 'patch-stuff
(lambda* (#:key inputs #:allow-other-keys) (lambda* (#:key inputs #:allow-other-keys)
...@@ -336,7 +336,7 @@ (define-public kodi ...@@ -336,7 +336,7 @@ (define-public kodi
#t)) #t))
(add-before 'check 'build-kodi-test (add-before 'check 'build-kodi-test
(lambda _ (lambda _
(zero? (system* "make" "kodi-test"))))))) (invoke "make" "kodi-test"))))))
;; TODO: Add dependencies for: ;; TODO: Add dependencies for:
;; - nfs ;; - nfs
;; - cec ;; - cec
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment