Skip to content
Snippets Groups Projects
Unverified Commit 519be98c authored by Danny Milosavljevic's avatar Danny Milosavljevic
Browse files

linux-modules: module-soft-dependencies: Remove colon from section names.

Follow-up to 1a5f4662.

* gnu/build/linux-modules.scm (module-soft-dependencies): Remove colon from
section names.
parent 1a5f4662
No related branches found
No related tags found
No related merge requests found
......@@ -114,7 +114,7 @@ (define (parse-softdep text)
(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))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment