me
/
guix
Archived
1
0
Fork 0

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>
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) (define (platform-target->system target)
"Return the system matching the given TARGET if it exists or false "Return the system matching the given TARGET if it exists or false
otherwise." otherwise."
(let ((platform (lookup-platform-by-target system))) (let ((platform (lookup-platform-by-target target)))
(and=> platform platform-system))) (and=> platform platform-system)))