Skip to content
Snippets Groups Projects
Commit a4eb83b7 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

gnu: eigen: Fix 'Cflags' value in 'eigen3.pc'.

* gnu/packages/algebra.scm (eigen)[source]: Augment snippet to address
  <http://eigen.tuxfamily.org/bz/show_bug.cgi?id=1114>.
parent 83a4a70b
No related branches found
No related tags found
No related merge requests found
...@@ -399,7 +399,11 @@ (define-public eigen ...@@ -399,7 +399,11 @@ (define-public eigen
;; anyway, so just skip them. ;; anyway, so just skip them.
'(substitute* "CMakeLists.txt" '(substitute* "CMakeLists.txt"
(("add_subdirectory\\(unsupported\\)") (("add_subdirectory\\(unsupported\\)")
"# Do not build the tests for unsupported features.\n"))))) "# Do not build the tests for unsupported features.\n")
;; Work around
;; <http://eigen.tuxfamily.org/bz/show_bug.cgi?id=1114>.
(("\"include/eigen3\"")
"\"${CMAKE_INSTALL_PREFIX}/include/eigen3\"")))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
'(;; Turn off debugging symbols to save space. '(;; Turn off debugging symbols to save space.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment