build-system/gnu: Set the docdir to "share/doc"
* guix/build/gnu-build-system.scm (configure): Change docdir directory from "doc" to "share/doc". Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7f31c71cb8
commit
c2e6516721
|
@ -163,7 +163,7 @@ makefiles."
|
||||||
'())
|
'())
|
||||||
,@(if docdir
|
,@(if docdir
|
||||||
(list (string-append "--docdir=" docdir
|
(list (string-append "--docdir=" docdir
|
||||||
"/doc/" (package-name)))
|
"/share/doc/" (package-name)))
|
||||||
'())
|
'())
|
||||||
,@(if target ; cross building
|
,@(if target ; cross building
|
||||||
(list (string-append "--host=" target))
|
(list (string-append "--host=" target))
|
||||||
|
|
Loading…
Reference in New Issue