[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Problem with building service from my channel
From: |
Ludovic Courtès |
Subject: |
Re: Problem with building service from my channel |
Date: |
Tue, 11 Jun 2019 12:31:21 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) |
Hi Jack,
Jack Hill <address@hidden> skribis:
> The build log is;
>
> ```
> (repl-version 0 0)
> (exception misc-error (value #f) (value "Unbound variable: ~s") (value
> (mcron-service-type)) (value #f))
> ```
>
> Presumably there was some change to the mcron-service-type recently
> that requires changes in my channel, but I don't see what they could
> be or how to fix my channel.
>
> What's going on here? What is the Guile exception trying to tell me?
The Guile exception possibly means that code in your channel refers to
‘mcron-service-type’, but that this variable is unbound. It could be
because one of your modules lacks #:use-module (gnu services mcron).
HTH,
Ludo’.