mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-26 04:06:49 +01:00
gnu: kodi: Use INVOKE.
* gnu/packages/kodi.scm (kodi)[arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
2aa137e261
commit
93ab9a5d76
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
#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
|
||||||
|
|
Loading…
Reference in a new issue