mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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>
This commit is contained in:
parent
0e0296af4e
commit
5011866692
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ (define (platform-system->target system)
|
|||
(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)))
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue