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:
Josselin Poiret 2022-06-08 11:58:41 +02:00 committed by Mathieu Othacehe
parent 0e0296af4e
commit 5011866692
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 1 additions and 1 deletions

View File

@ -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)))