mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05: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")))
|
||||
(every (lambda (third-party)
|
||||
(with-directory-excursion third-party
|
||||
(zero? (system* "autoreconf" "-vif"))))
|
||||
(invoke "autoreconf" "-vif")))
|
||||
dirs))))
|
||||
(add-after 'bootstrap-bundled-software 'patch-stuff
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
|
@ -336,7 +336,7 @@ (define-public kodi
|
|||
#t))
|
||||
(add-before 'check 'build-kodi-test
|
||||
(lambda _
|
||||
(zero? (system* "make" "kodi-test")))))))
|
||||
(invoke "make" "kodi-test"))))))
|
||||
;; TODO: Add dependencies for:
|
||||
;; - nfs
|
||||
;; - cec
|
||||
|
|
Loading…
Reference in a new issue