diff options
author | Tomas Volf <~@wolfsden.cz> | 2025-01-25 00:46:36 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-02-09 18:20:42 +0100 |
commit | e3459bff0039fbaaaf521fb8c8d406dc29986a8e (patch) | |
tree | 2422be9f3635eb4a39675d7a1eb9aef4bb2ee67a /gnu/packages/guile-xyz.scm | |
parent | 0753a17ddf6f4fab98b93c25f1a93b97ff9e46bb (diff) |
gnu: mcron: Use correct sendmail.
When the crons are running, /run/privileged/bin is not in the $PATH, hence the
default of "sendmail -t" does not work.
* gnu/packages/guile-xyz.scm (mcron)[arguments]<#:configure-flags>: Set
sendmail path.
Change-Id: I86ffa5ddf26209acd8f706394ac13e63dcf4e0ec
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/guile-xyz.scm')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 6d12ab9688..28474753b9 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -3291,6 +3291,9 @@ is no support for parsing block and inline level HTML.") (build-system gnu-build-system) (arguments (list + #:configure-flags + #~(list + "--with-sendmail=/run/privileged/bin/sendmail -t") #:phases #~(modify-phases %standard-phases (add-before 'check 'adjust-tests (lambda _ |