guix-commits
[Top][All Lists]
Advanced

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

09/17: gnu: libsemanage: Return #t from all phases.


From: Tobias Geerinckx-Rice
Subject: 09/17: gnu: libsemanage: Return #t from all phases.
Date: Thu, 21 Jun 2018 18:20:33 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit bb6c3d2332d74e268f5d48b39b92b97cea1acab3
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Wed Jun 20 16:56:36 2018 +0200

    gnu: libsemanage: Return #t from all phases.
    
    * gnu/packages/selinux.scm (libsemanage)[arguments]: Substitute INVOKE
    for SYSTEM*.
---
 gnu/packages/selinux.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/selinux.scm b/gnu/packages/selinux.scm
index 9562123..c56a991 100644
--- a/gnu/packages/selinux.scm
+++ b/gnu/packages/selinux.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2016, 2017, 2018 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -201,10 +202,10 @@ the core SELinux management utilities.")
              (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)



reply via email to

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