mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: opensm: Use the right version string for the doc directory.
Previously, when built with ‘--with-latest=opensm’, the package would install its documentation under a directory with the wrong version string. * gnu/packages/fabric-management.scm (opensm)[arguments]: Use the name and version of THIS-PACKAGE.
This commit is contained in:
parent
b712e563cf
commit
ab6f63f3cb
1 changed files with 3 additions and 3 deletions
|
@ -73,11 +73,11 @@ (define-public opensm
|
|||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((base (assoc-ref outputs "out"))
|
||||
(doc (string-append base "/share/doc/"
|
||||
,name "-" ,version)))
|
||||
,(package-name this-package) "-"
|
||||
,(package-version this-package))))
|
||||
(for-each (lambda (file)
|
||||
(install-file file doc))
|
||||
(find-files "doc"))
|
||||
#t))))))
|
||||
(find-files "doc"))))))))
|
||||
(home-page "https://www.openfabrics.org/")
|
||||
(synopsis "OpenIB InfiniBand Subnet Manager and management utilities")
|
||||
(description "\
|
||||
|
|
Loading…
Reference in a new issue