me
/
guix
Archived
1
0
Fork 0

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>
master
Sarah Morgensen 2021-07-25 13:39:55 -07:00 committed by Arun Isaac
parent b459c39adb
commit e17f063627
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 2 additions and 1 deletions

View File

@ -7984,7 +7984,8 @@ solution for any project's interface needs:
(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)))))