guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/14: gnu: opensm: Use the right version string for the doc directory.


From: guix-commits
Subject: 01/14: gnu: opensm: Use the right version string for the doc directory.
Date: Wed, 15 Nov 2023 05:38:01 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit ab6f63f3cb68c57a16afc71b403ebd6711351d3a
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Oct 16 08:30:19 2023 +0200

    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.
---
 gnu/packages/fabric-management.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/fabric-management.scm 
b/gnu/packages/fabric-management.scm
index b6b2e5176c..545cd4ff67 100644
--- a/gnu/packages/fabric-management.scm
+++ b/gnu/packages/fabric-management.scm
@@ -73,11 +73,11 @@
            (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 "\



reply via email to

[Prev in Thread] Current Thread [Next in Thread]