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>.
master
Marius Bakke 2019-07-23 19:06:23 +02:00
parent 14767d4466
commit 941ef1a1e5
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 5 additions and 0 deletions

View File

@ -69,6 +69,11 @@
#:make-flags
(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.
(string-append "linkflags=-Wl,-rpath="
(assoc-ref %outputs "out") "/lib"))