diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-09-04 22:34:28 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-09-04 22:34:28 +0200 |
commit | a76585e5535f433d37c0900cf0b2d3c9d3b3461c (patch) | |
tree | 007befec20e2a33117256eeee11b7c642179dad4 /gnu/packages/mail.scm | |
parent | 1dc32c2961402c946c25e5a1aabe79a30cce3cff (diff) | |
parent | c427fda233a7da0c8eb27e244a562c51d3835503 (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index fe040a1180..2a759c3d2e 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1169,9 +1169,9 @@ It supports mbox/Maildir and its own dbox/mdbox formats.") "/lib/dovecot")) #:phases (modify-phases %standard-phases - (add-before 'configure 'autogen + (add-after 'unpack 'autogen (lambda _ - (zero? (system* "./autogen.sh"))))))) + (zero? (system* "sh" "autogen.sh"))))))) (home-page "https://0xacab.org/riseuplabs/trees") (synopsis "NaCL-based Dovecot email storage encryption plugin") (description @@ -1225,9 +1225,9 @@ using lidsodium sealed boxes. "/lib/dovecot")) #:phases (modify-phases %standard-phases - (add-before 'configure 'autogen + (add-after 'unpack 'autogen (lambda _ - (zero? (system* "./autogen.sh"))))))) + (zero? (system* "sh" "autogen.sh"))))))) (home-page "https://github.com/LuckyFellow/dovecot-libsodium-plugin") (synopsis "Libsodium password hashing schemes plugin for Dovecot") (description |