diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-10-05 22:31:46 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-10-05 23:14:55 +0200 |
commit | a0818d0236056dae043f9d1997b0c45ee40bbe26 (patch) | |
tree | 2c796c01bafd297620cc97a14ad1940eca45ea3d /gnu/services | |
parent | c49cc1ac12fc76d16a0b281e34dc98184f01ad19 (diff) | |
download | guix-a0818d0236056dae043f9d1997b0c45ee40bbe26.tar.gz guix-a0818d0236056dae043f9d1997b0c45ee40bbe26.zip |
services: mcron: Hide ‘mkdir-p’ from (shepherd support).
This a avoids a Guile warning about the name collision with (guix build
utils). The warning was introduced by commit
e0e85f2b2396c69d078caad9bd8e1a0fddf33a4a.
* gnu/services/mcron.scm (mcron-shepherd-services): Hide ‘mkdir-p’.
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/mcron.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/mcron.scm b/gnu/services/mcron.scm index 088de8c83b..e907d364da 100644 --- a/gnu/services/mcron.scm +++ b/gnu/services/mcron.scm @@ -165,7 +165,7 @@ files." (ice-9 popen) ;for the 'schedule' action (ice-9 rdelim) (ice-9 match) - (shepherd support) ;for '%user-log-dir' + ((shepherd support) #:hide (mkdir-p)) ;for '%user-log-dir' ,@%default-modules)) (start #~(make-forkexec-constructor (list #$(file-append mcron "/bin/mcron") |