guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

13/13: gnu: libselinux: Use invoke.


From: Mark H. Weaver
Subject: 13/13: gnu: libselinux: Use invoke.
Date: Sun, 25 Mar 2018 05:03:18 -0400 (EDT)

mhw pushed a commit to branch core-updates
in repository guix.

commit 927c52c4ab148e83861e48bb07b08588a386043b
Author: Mark H Weaver <address@hidden>
Date:   Sun Mar 25 04:52:02 2018 -0400

    gnu: libselinux: Use invoke.
    
    * gnu/packages/selinux.scm (libselinux)[arguments]: Use invoke in the 
'pywrap'
    and 'install-pywrap' phases.
---
 gnu/packages/selinux.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/selinux.scm b/gnu/packages/selinux.scm
index 3db1b45..9562123 100644
--- a/gnu/packages/selinux.scm
+++ b/gnu/packages/selinux.scm
@@ -157,10 +157,10 @@ module into a binary representation.")
                #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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]