guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: ceph: Install headers to the "lib" output.


From: guix-commits
Subject: 01/04: gnu: ceph: Install headers to the "lib" output.
Date: Sun, 17 Mar 2019 11:14:14 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 02a4efb23815d0ed2d600f6e0af0735c0388c696
Author: Marius Bakke <address@hidden>
Date:   Fri Mar 15 17:48:35 2019 +0100

    gnu: ceph: Install headers to the "lib" output.
    
    The previous provision for this has been defunct since version 12.
    
    * gnu/packages/storage.scm (ceph)[arguments]: Remove obsolete substitution 
in
    favor of a configure flag.
---
 gnu/packages/storage.scm | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/storage.scm b/gnu/packages/storage.scm
index ee74f94..f394c21 100644
--- a/gnu/packages/storage.scm
+++ b/gnu/packages/storage.scm
@@ -93,6 +93,8 @@
               (libdir (string-append lib "/lib")))
          (list (string-append "-DCMAKE_INSTALL_PREFIX=" out)
                (string-append "-DCMAKE_INSTALL_LIBDIR=" libdir)
+               (string-append "-DCMAKE_INSTALL_INCLUDEDIR="
+                              lib "/include")
                ;; We need both libdir and libdir/ceph in RUNPATH.
                (string-append "-DCMAKE_INSTALL_RPATH="
                               libdir ";" libdir "/ceph")
@@ -127,11 +129,6 @@
              (let ((out (assoc-ref outputs "out"))
                    (lib (assoc-ref outputs "lib")))
 
-               ;; Make header files follow the dynamic libraries.
-               (substitute* "src/include/CMakeLists.txt"
-                 (("DESTINATION include")
-                  (string-append "DESTINATION " lib "/include")))
-
                (substitute* "cmake/modules/Distutils.cmake"
                  ;; Prevent creation of Python eggs.
                  (("setup.py install")



reply via email to

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