From 523b0180d8cf2eea99e418db52eca5a54ab2e7ac Mon Sep 17 00:00:00 2001 From: Laszlo Ersek Date: Wed, 8 Sep 2021 15:35:42 +0200 Subject: [PATCH] daemon_utils_tests: generalize ocaml-hivex[-devel] lookup 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 Message-Id: <20210908133542.19002-3-lersek@redhat.com> Acked-by: Richard W.M. Jones --- daemon/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/Makefile.am b/daemon/Makefile.am index 83bf39975..7322bfa5d 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) \