guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 1cd221c9e91f06376e46893e9556112048311428
Author: Ludovic Courtès <[email protected]>
AuthorDate: Wed Jun 4 12:45:42 2025 +0200

    services: static-networking: Remove use of unbound variable.
    
    Use of ‘G_’ was added in 670d985cabf81a28660c4a8024f752decc495dce but
    it’s actually unbound.
    
    * gnu/services/base.scm (network-set-up/linux): Remove uses of ‘G_’,
    which is unbound.
    
    Change-Id: I6e879688ceee2fcb738e5e213cd3d539c9d89e20
---
 gnu/services/base.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index 1f5da97f0a..edc6f45850 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -3355,14 +3355,16 @@ to CONFIG."
                                              (apply link-set
                                                     (link-id link)
                                                     (alist->keyword+value 
'#$arguments))
-                                             (format #t (G_ "Interface with 
name '~a' not found~%") #$name))))
+                                             (format #t "Interface with name 
'~a' not found~%"
+                                                     #$name))))
                                     ((string? mac-address)
                                      #~(let ((link (match-link-by link-addr 
#$mac-address)))
                                          (if link
                                              (apply link-set
                                                     (link-id link)
                                                     (alist->keyword+value 
'#$arguments))
-                                             (format #t (G_ "Interface with 
mac-address '~a' not found~%") #$mac-address)))))))
+                                             (format #t "Interface with 
mac-address '~a' not found~%"
+                                                     #$mac-address)))))))
                                 links)
 
                         ;; 'wait-for-link' below could wait forever when

Reply via email to