gnu: ocaml: Add CAML_LD_LIBRARY_PATH search-path.
* gnu/packages/ocaml.scm (ocaml)[native-search-paths]: Add CAML_LD_LIBRARY_PATH. Signed-off-by: David Craven <david@craven.ch>
This commit is contained in:
parent
8bd10c1082
commit
796a17ab01
1 changed files with 4 additions and 1 deletions
|
@ -71,7 +71,10 @@ (define-public ocaml
|
|||
(native-search-paths
|
||||
(list (search-path-specification
|
||||
(variable "OCAMLPATH")
|
||||
(files (list (string-append "lib/ocaml"))))))
|
||||
(files (list "lib/ocaml")))
|
||||
(search-path-specification
|
||||
(variable "CAML_LD_LIBRARY_PATH")
|
||||
(files (list "lib/ocaml/site-lib/stubslibs")))))
|
||||
(native-inputs
|
||||
`(("perl" ,perl)
|
||||
("pkg-config" ,pkg-config)))
|
||||
|
|
Loading…
Reference in a new issue