mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
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
1 changed files with 5 additions and 0 deletions
|
@ -69,6 +69,11 @@ (define-public boost
|
|||
#: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"))
|
||||
|
|
Loading…
Reference in a new issue