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:
John Darrington 2014-02-10 21:35:30 +01:00 committed by Ludovic Courtès
parent 7f31c71cb8
commit c2e6516721

View file

@ -163,7 +163,7 @@ (define (package-name)
'())
,@(if docdir
(list (string-append "--docdir=" docdir
"/doc/" (package-name)))
"/share/doc/" (package-name)))
'())
,@(if target ; cross building
(list (string-append "--host=" target))