mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: python-robotframework-sshlibrary: Normalize doc location.
* gnu/packages/python-xyz.scm (python-robotframework-sshlibrary): [phases]{build-and-install-doc}: Install HTML documentation to the share/doc subdirectory of the 'doc' output.
This commit is contained in:
parent
ebd2093b32
commit
48e049b38d
1 changed files with 3 additions and 3 deletions
|
@ -4872,9 +4872,9 @@ (define-public python-robotframework-sshlibrary
|
|||
(modify-phases %standard-phases
|
||||
(add-before 'build 'build-and-install-doc
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((doc-output (assoc-ref outputs "doc"))
|
||||
(doc (string-append doc-output "/share/"
|
||||
,name "-" ,version "/")))
|
||||
(let ((doc (string-append
|
||||
(assoc-ref outputs "doc")
|
||||
"/share/doc/robotframework-sshlibrary")))
|
||||
(invoke "chmod" "-R" "+w" "docs")
|
||||
(invoke "invoke" "kw-docs" "project-docs")
|
||||
(mkdir-p doc)
|
||||
|
|
Loading…
Reference in a new issue