From ba90def4b5cb116ce4c34ea0d943082f925c9895 Mon Sep 17 00:00:00 2001 From: Gabriel Scherer Date: Jun 04 2014 20:01:22 +0000 Subject: PR#5547: ocamlbuild reverts to using -no-ocamlfind by default git-svn-id: http://caml.inria.fr/svn/ocaml/version/4.02@14953 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02 --- diff --git a/Changes b/Changes index f1234ad..06d47bf 100644 --- a/Changes +++ b/Changes @@ -258,8 +258,6 @@ Features wishes: - PR#4323: have "of_string" in Num and Big_int work with binary and hex representations (Zoe Paraskevopoulou, review by Gabriel Scherer) -- PR#5547: Enable the "-use-ocamlfind" option by default - (Wojciech Meyer) - PR#5650: Camlp4FoldGenerator doesn't handle well "abstract" types (Hongbo Zhang) - PR#5808: allow simple patterns, not just identifiers, in "let p : t = ..." diff --git a/ocamlbuild/options.ml b/ocamlbuild/options.ml index 78cee63..68c0ac8 100644 --- a/ocamlbuild/options.ml +++ b/ocamlbuild/options.ml @@ -38,7 +38,7 @@ let make_links = ref true let nostdlib = ref false let use_menhir = ref false let catch_errors = ref true -let use_ocamlfind = ref true +let use_ocamlfind = ref false (* Currently only ocamlfind and menhir is defined as no-core tool, perhaps later we need something better *)