From d224f4de52d560a08f920505667f590da1e4a69f Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 21 Jul 2015 15:59:00 +0100 Subject: [PATCH] configure: Don't test for camlp4of.opt, test for camlp4of. This patch isn't complete since we should really choose the best (either camlp4of or camlp4of.opt) and then use it in the Makefile. But at least it stops the package from breaking on bytecode-only architectures. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d6e8720..d59de02 100644 --- a/configure.ac +++ b/configure.ac @@ -61,7 +61,7 @@ if test "x$OCAMLFIND" = "x"; then fi dnl Check for camlp4 -AC_CHECK_PROG(CAMLP4OF,camlp4of.opt,camlp4of.opt,no) +AC_CHECK_PROG(CAMLP4OF,camlp4of,camlp4of,no) if test "x$CAMLP4OF" = "xno"; then AC_MSG_ERROR([You must have camlp4 installed]) fi -- 1.8.3.1