gnu: boost: Do not install CMake files.
Fixes <https://bugs.gnu.org/36721>. * gnu/packages/boost.scm (boost)[arguments]: Add "--no-cmake-config" to <#:configure-flags>.
This commit is contained in:
parent
14767d4466
commit
941ef1a1e5
|
@ -69,6 +69,11 @@
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list "threading=multi" "link=shared"
|
(list "threading=multi" "link=shared"
|
||||||
|
|
||||||
|
;; XXX: Disable installation of Boosts modular CMake config scripts
|
||||||
|
;; which conflicts in 1.70.0 with the ones provided by CMake.
|
||||||
|
;; See <https://bugs.gnu.org/36721>.
|
||||||
|
"--no-cmake-config"
|
||||||
|
|
||||||
;; Set the RUNPATH to $libdir so that the libs find each other.
|
;; Set the RUNPATH to $libdir so that the libs find each other.
|
||||||
(string-append "linkflags=-Wl,-rpath="
|
(string-append "linkflags=-Wl,-rpath="
|
||||||
(assoc-ref %outputs "out") "/lib"))
|
(assoc-ref %outputs "out") "/lib"))
|
||||||
|
|
Loading…
Reference in New Issue