gnu: papi: Fix documentation location.
* gnu/packages/profiling.scm (papi)[arguments]: Install ‘documentation’ to a customary subdirectory of /share/doc.
This commit is contained in:
parent
0ebc1b934d
commit
f7c870f78a
|
@ -66,7 +66,7 @@
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("gfortran" ,gfortran)))
|
("gfortran" ,gfortran)))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ; no check target
|
`(#:tests? #f ; no check target
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
;; These are roughly per Fedora, but elide mx (assumed to be dead, even
|
;; These are roughly per Fedora, but elide mx (assumed to be dead, even
|
||||||
;; Open-MX) and add and powercap -- I don't know the pros/cons of
|
;; Open-MX) and add and powercap -- I don't know the pros/cons of
|
||||||
|
@ -110,7 +110,7 @@ stealtime lmsensors infiniband powercap"
|
||||||
(add-after 'install 'extra-doc
|
(add-after 'install 'extra-doc
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((doc (string-append (assoc-ref outputs "out")
|
(let ((doc (string-append (assoc-ref outputs "out")
|
||||||
"/share/doc")))
|
"/share/doc/" ,name "-" ,version)))
|
||||||
(chdir "..") ; we went into src above
|
(chdir "..") ; we went into src above
|
||||||
(for-each (lambda (file)
|
(for-each (lambda (file)
|
||||||
(install-file file doc))
|
(install-file file doc))
|
||||||
|
|
Loading…
Reference in New Issue