mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: libselinux: Use invoke.
* gnu/packages/selinux.scm (libselinux)[arguments]: Use invoke in the 'pywrap' and 'install-pywrap' phases.
This commit is contained in:
parent
d5c88f16c4
commit
927c52c4ab
1 changed files with 2 additions and 2 deletions
|
@ -157,10 +157,10 @@ (define-public libselinux
|
|||
#t))
|
||||
(add-after 'build 'pywrap
|
||||
(lambda* (#:key make-flags #:allow-other-keys)
|
||||
(zero? (apply system* "make" "pywrap" make-flags))))
|
||||
(apply invoke "make" "pywrap" make-flags)))
|
||||
(add-after 'install 'install-pywrap
|
||||
(lambda* (#:key make-flags #:allow-other-keys)
|
||||
(zero? (apply system* "make" "install-pywrap" make-flags))))))))
|
||||
(apply invoke "make" "install-pywrap" make-flags)))))))
|
||||
;; These libraries are in "Requires.private" in libselinux.pc.
|
||||
(propagated-inputs
|
||||
`(("libsepol" ,libsepol)
|
||||
|
|
Loading…
Reference in a new issue