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
|
@ -157,10 +157,10 @@ module into a binary representation.")
|
||||||
#t))
|
#t))
|
||||||
(add-after 'build 'pywrap
|
(add-after 'build 'pywrap
|
||||||
(lambda* (#:key make-flags #:allow-other-keys)
|
(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
|
(add-after 'install 'install-pywrap
|
||||||
(lambda* (#:key make-flags #:allow-other-keys)
|
(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.
|
;; These libraries are in "Requires.private" in libselinux.pc.
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("libsepol" ,libsepol)
|
`(("libsepol" ,libsepol)
|
||||||
|
|
Loading…
Reference in New Issue