mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
Revert "gnu: dovecot: Set moduledir to global directory."
This reverts commitdb0109be42
. Same reason as commitd9d88c2ff0
.
This commit is contained in:
parent
d9d88c2ff0
commit
54151d1af5
1 changed files with 1 additions and 6 deletions
|
@ -1453,7 +1453,6 @@ (define-public dovecot
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("--sysconfdir=/etc"
|
`(#:configure-flags '("--sysconfdir=/etc"
|
||||||
"--localstatedir=/var"
|
"--localstatedir=/var"
|
||||||
"--with-moduledir=/etc/dovecot/modules"
|
|
||||||
"--with-sqlite" ; not auto-detected
|
"--with-sqlite" ; not auto-detected
|
||||||
"--with-lucene") ; not auto-detected
|
"--with-lucene") ; not auto-detected
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -1472,13 +1471,9 @@ (define-public dovecot
|
||||||
(("cat") (which "cat")))
|
(("cat") (which "cat")))
|
||||||
#t))
|
#t))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs make-flags #:allow-other-keys)
|
(lambda* (#:key make-flags #:allow-other-keys)
|
||||||
;; The .la files don't like having the moduledir moved.
|
|
||||||
(for-each delete-file (find-files "." "\\.la"))
|
|
||||||
;; Simple hack to avoid installing a trivial README in /etc.
|
;; Simple hack to avoid installing a trivial README in /etc.
|
||||||
(apply invoke "make" "install" "sysconfdir=/tmp/bogus"
|
(apply invoke "make" "install" "sysconfdir=/tmp/bogus"
|
||||||
(string-append "moduledir=" (assoc-ref outputs "out")
|
|
||||||
"/lib/dovecot")
|
|
||||||
make-flags))))))
|
make-flags))))))
|
||||||
(home-page "https://www.dovecot.org")
|
(home-page "https://www.dovecot.org")
|
||||||
(synopsis "Secure POP3/IMAP server")
|
(synopsis "Secure POP3/IMAP server")
|
||||||
|
|
Loading…
Reference in a new issue