Pass $(HIVEX_LIBS) with -cclib under the "daemon_utils_tests_LINK" target; otherwise the OCaml compiler does not tell the linker where "-lhivex" can be found, and the linking step fails if "-lhivex" is not on a system library path.
Signed-off-by: Laszlo Ersek <[email protected]> --- daemon/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/Makefile.am b/daemon/Makefile.am index 83bf39975e04..7322bfa5d765 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -453,7 +453,7 @@ daemon_utils_tests_DEPENDENCIES = \ $(top_builddir)/ocaml-link.sh daemon_utils_tests_LINK = \ $(top_builddir)/ocaml-link.sh \ - -cclib '-lutils -lgnu' \ + -cclib '-lutils -lgnu $(HIVEX_LIBS)' \ -- \ $(OCAMLFIND) $(BEST) $(OCAMLFLAGS) $(OCAMLLINKFLAGS) \ $(OCAMLPACKAGES) \ -- 2.19.1.3.g30247aa5d201 _______________________________________________ Libguestfs mailing list [email protected] https://listman.redhat.com/mailman/listinfo/libguestfs
