guix-commits
[Top][All Lists]
Advanced

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

01/01: linux-modules: module-soft-dependencies: Remove colon from sectio


From: guix-commits
Subject: 01/01: linux-modules: module-soft-dependencies: Remove colon from section names.
Date: Fri, 25 Jan 2019 12:25:52 -0500 (EST)

dannym pushed a commit to branch master
in repository guix.

commit 519be98c3536b5113cde368f9dc6db2e1ebe073e
Author: Danny Milosavljevic <address@hidden>
Date:   Fri Jan 25 18:23:19 2019 +0100

    linux-modules: module-soft-dependencies: Remove colon from section names.
    
    Follow-up to 1a5f46621b44aa1458ad7acd4eca5fe1d4574f92.
    
    * gnu/build/linux-modules.scm (module-soft-dependencies): Remove colon from
    section names.
---
 gnu/build/linux-modules.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/build/linux-modules.scm b/gnu/build/linux-modules.scm
index a28908f..d69bcbf 100644
--- a/gnu/build/linux-modules.scm
+++ b/gnu/build/linux-modules.scm
@@ -114,7 +114,7 @@ contains module names, not actual file names."
       (match tokens
        ((token rest ...)
         (if (string=? (string-take-right token 1) ":") ; section
-            (loop value rest (string-trim-both token))
+            (loop value rest (string-trim-both (string-drop-right token 1)))
             (loop (cons (cons section token) value) rest section)))
        (()
         value))))



reply via email to

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