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
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ contains module names, not actual file names."
|
||||||
(match tokens
|
(match tokens
|
||||||
((token rest ...)
|
((token rest ...)
|
||||||
(if (string=? (string-take-right token 1) ":") ; section
|
(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)))
|
(loop (cons (cons section token) value) rest section)))
|
||||||
(()
|
(()
|
||||||
value))))
|
value))))
|
||||||
|
|
Reference in a new issue