From 85ad874bf4dc5fb95069b38eaaa5c053feaceb81 Mon Sep 17 00:00:00 2001 From: Jules Villard Date: Fri, 11 Dec 2015 04:29:01 -0800 Subject: [PATCH] fail if ocamlfind is not installed Summary: public We were testing for the wrong program here. Reviewed By: dulmarod Differential Revision: D2748990 fb-gh-sync-id: d2af6f6 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 082548733..399045589 100644 --- a/configure.ac +++ b/configure.ac @@ -39,7 +39,7 @@ AC_ASSERT_PROG([ocamlc], [$OCAMLC]) AC_ASSERT_PROG([ocamlopt], [$OCAMLOPT]) AC_ASSERT_PROG([ocamlbuild], [$OCAMLBUILD]) AC_PROG_FINDLIB -AC_ASSERT_PROG([findlib], [$FINDLIB]) +AC_ASSERT_PROG([ocamlfind], [$OCAMLFIND]) AC_PROG_OCAMLLEX AC_ASSERT_PROG([ocamllex], [$OCAMLLEX]) AC_PROG_OCAMLYACC