linux-modules: module-soft-dependencies: Remove colon from section names.
Follow-up to 1a5f46621b
.
* gnu/build/linux-modules.scm (module-soft-dependencies): Remove colon from
section names.
This commit is contained in:
parent
1a5f46621b
commit
519be98c35
|
@ -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))))
|
||||
|
|
Loading…
Reference in New Issue