guix-patches
[Top][All Lists]
Advanced

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

[bug#55658] [PATCH] services: ddclient: No need to import (ice-9 rdelim)


From: Attila Lendvai
Subject: [bug#55658] [PATCH] services: ddclient: No need to import (ice-9 rdelim) from the host.
Date: Thu, 26 May 2022 15:07:44 +0200

* gnu/services/dns.scm (ddclient-activation): Remove (ice-9 rdelim) from the
with-imported-modules form.
---

this gets rid of a warning (and a potential error with a substantially
different guile version on the two sides).

 gnu/services/dns.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/services/dns.scm b/gnu/services/dns.scm
index a220b33f15..50753b7ab6 100644
--- a/gnu/services/dns.scm
+++ b/gnu/services/dns.scm
@@ -978,8 +978,7 @@ (define (ddclient-account config)
 
 (define (ddclient-activation config)
   "Return the activation GEXP for CONFIG."
-  (with-imported-modules '((guix build utils)
-                           (ice-9 rdelim))
+  (with-imported-modules '((guix build utils))
     #~(begin
         (use-modules (guix build utils)
                      (ice-9 rdelim))
-- 
2.35.1






reply via email to

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