gnu: ceres-solver: Install library to lib/ instead of lib64/.
* gnu/packages/maths.scm (ceres)[arguments]: In 'set-library-directory' phase, modify the top-level 'CMakeLists.txt'.
This commit is contained in:
parent
38745deaec
commit
d19aff9339
1 changed files with 2 additions and 3 deletions
|
@ -2373,10 +2373,9 @@ satisfiability checking (SAT).")
|
||||||
(add-before 'configure 'set-library-directory
|
(add-before 'configure 'set-library-directory
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Install libraries to lib/, not lib64/.
|
;; Install libraries to lib/, not lib64/.
|
||||||
(substitute* "internal/ceres/CMakeLists.txt"
|
(substitute* "CMakeLists.txt"
|
||||||
(("set\\(LIB_SUFFIX \"64\"\\)")
|
(("set\\(LIB_SUFFIX \"64\"\\)")
|
||||||
"set(LIB_SUFFIX \"\")"))
|
"set(LIB_SUFFIX \"\")")))))))
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
|
Reference in a new issue