mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: libsemanage: Return #t from all phases.
* gnu/packages/selinux.scm (libsemanage)[arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
1fe5791d8d
commit
bb6c3d2332
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -201,10 +202,10 @@ (define-public libsemanage
|
|||
(lambda _ (chdir ,name) #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)))))))
|
||||
(inputs
|
||||
`(("libsepol" ,libsepol)
|
||||
("libselinux" ,libselinux)
|
||||
|
|
Loading…
Reference in a new issue