mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 23:48:07 -05:00
gnu: gmnisrv: Fix configuration search path.
Look in /etc for configuration files rather than /gnu/store/...-gmnisrv-.../etc. gnu/packages/web.scm (gmnisrv)[arguments]<#:configure-flags>: Set --sysconfdir. Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
This commit is contained in:
parent
b459c39adb
commit
e17f063627
1 changed files with 2 additions and 1 deletions
|
@ -7984,7 +7984,8 @@ (define-public gmnisrv
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no check target
|
||||
#:configure-flags (list (string-append "--with-mimedb="
|
||||
#:configure-flags (list "--sysconfdir=/etc"
|
||||
(string-append "--with-mimedb="
|
||||
(assoc-ref %build-inputs "mailcap")
|
||||
"/etc/mime.types"))
|
||||
#:make-flags (list (string-append "CC=" ,(cc-for-target)))))
|
||||
|
|
Loading…
Reference in a new issue