guix: platform: Fix typo in lookup-platform-by-target.
* guix/platform.scm (lookup-platform-by-target): Fix typo system -> target. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
parent
0e0296af4e
commit
5011866692
|
@ -121,7 +121,7 @@ otherwise."
|
|||
(define (platform-target->system target)
|
||||
"Return the system matching the given TARGET if it exists or false
|
||||
otherwise."
|
||||
(let ((platform (lookup-platform-by-target system)))
|
||||
(let ((platform (lookup-platform-by-target target)))
|
||||
(and=> platform platform-system)))
|
||||
|
||||
|
||||
|
|
Reference in New Issue