guix-commits
[Top][All Lists]
Advanced

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

327/401: build-system/python: Also wrap executables that are in "libexec


From: guix-commits
Subject: 327/401: build-system/python: Also wrap executables that are in "libexec".
Date: Tue, 18 Aug 2020 16:22:10 -0400 (EDT)

dannym pushed a commit to branch wip-desktop
in repository guix.

commit 1f6c1fe6d4f36743d8212953b3b6eeb4c38ef5e9
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Wed Aug 12 21:23:15 2020 -0400

    build-system/python: Also wrap executables that are in "libexec".
    
    * guix/build/python-build-system.scm (bindirs): Also wrap executables
    that are in "libexec".
    
    Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
 guix/build/python-build-system.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/guix/build/python-build-system.scm 
b/guix/build/python-build-system.scm
index 09bd846..9b23b69 100644
--- a/guix/build/python-build-system.scm
+++ b/guix/build/python-build-system.scm
@@ -196,7 +196,8 @@ when running checks after installing the package."
     (append-map (match-lambda
                  ((_ . dir)
                   (list (string-append dir "/bin")
-                        (string-append dir "/sbin"))))
+                        (string-append dir "/sbin")
+                        (string-append dir "/libexec"))))
                 outputs))
 
   (let* ((out  (assoc-ref outputs "out"))



reply via email to

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