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
|
@ -71,7 +71,10 @@
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
(list (search-path-specification
|
(list (search-path-specification
|
||||||
(variable "OCAMLPATH")
|
(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
|
(native-inputs
|
||||||
`(("perl" ,perl)
|
`(("perl" ,perl)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
|
|
Loading…
Reference in New Issue