guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: guix: platform: Fix typo in lookup-platform-by-ta


From: guix-commits
Subject: branch master updated: guix: platform: Fix typo in lookup-platform-by-target.
Date: Wed, 08 Jun 2022 06:02:34 -0400

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 5011866692 guix: platform: Fix typo in lookup-platform-by-target.
5011866692 is described below

commit 5011866692cb25fae2e33247b3a4a0603e223f51
Author: Josselin Poiret <dev@jpoiret.xyz>
AuthorDate: Wed Jun 8 11:58:41 2022 +0200

    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>
---
 guix/platform.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/platform.scm b/guix/platform.scm
index 361241cb2e..19d4527e29 100644
--- a/guix/platform.scm
+++ b/guix/platform.scm
@@ -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)))
 
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]