guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: libselinux: Propagate libsepol and pcre.


From: Kei Kebreau
Subject: 01/01: gnu: libselinux: Propagate libsepol and pcre.
Date: Thu, 15 Jun 2017 02:48:19 -0400 (EDT)

kkebreau pushed a commit to branch master
in repository guix.

commit 9ffc1f0e95743171370e3999bd41eba9ebaada33
Author: Kei Kebreau <address@hidden>
Date:   Thu Jun 15 02:47:00 2017 -0400

    gnu: libselinux: Propagate libsepol and pcre.
    
    Both libsepol and pcre required by libselinux.pc.
    
    * gnu/packages/selinux.scm (libselinux)[inputs]: Move libsepol and pcre...
    [propagated-inputs]: ...here.
---
 gnu/packages/selinux.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/selinux.scm b/gnu/packages/selinux.scm
index 81c899f..729ae64 100644
--- a/gnu/packages/selinux.scm
+++ b/gnu/packages/selinux.scm
@@ -157,11 +157,13 @@ module into a binary representation.")
            (add-after 'install 'install-pywrap
              (lambda* (#:key make-flags #:allow-other-keys)
                (zero? (apply system* "make" "install-pywrap" make-flags))))))))
-    (inputs
+    ;; These libraries are in "Requires.private" in libselinux.pc.
+    (propagated-inputs
      `(("libsepol" ,libsepol)
-       ("pcre" ,pcre)
-       ;; For pywrap phase
-       ("python" ,python-wrapper)))
+       ("pcre" ,pcre)))
+    ;; For pywrap phase
+    (inputs
+     `(("python" ,python-wrapper)))
     ;; These inputs are only needed for the pywrap phase.
     (native-inputs
      `(("swig" ,swig)



reply via email to

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