diff --git a/src/context.ml b/src/context.ml index f3cb3034..f3a04614 100644 --- a/src/context.ml +++ b/src/context.ml @@ -42,8 +42,6 @@ type t = ; ocamlc : Path.t ; ocamlopt : Path.t option ; ocamldep : Path.t - ; ocamllex : Path.t - ; ocamlyacc : Path.t ; ocamlmklib : Path.t ; env : string array ; env_extra : string Env_var_map.t @@ -102,8 +100,6 @@ let sexp_of_t t = ; "ocamlc", path t.ocamlc ; "ocamlopt", option path t.ocamlopt ; "ocamldep", path t.ocamldep - ; "ocamllex", path t.ocamllex - ; "ocamlyacc", path t.ocamlyacc ; "ocamlmklib", path t.ocamlmklib ; "env", list (pair string string) (Env_var_map.bindings t.env_extra) ; "findlib_path", list path (Findlib.path t.findlib) @@ -317,8 +313,6 @@ let create ~(kind : Kind.t) ~path ~base_env ~env_extra ~name ~merlin ~use_findli ; ocaml = Path.relative dir "ocaml" ; ocamlc ; ocamlopt = best_prog "ocamlopt" - ; ocamllex = get_prog "ocamllex" - ; ocamlyacc = get_prog "ocamlyacc" ; ocamldep = get_prog "ocamldep" ; ocamlmklib = get_prog "ocamlmklib" diff --git a/src/context.mli b/src/context.mli index 027bad51..102b9d03 100644 --- a/src/context.mli +++ b/src/context.mli @@ -63,8 +63,6 @@ type t = ; ocamlc : Path.t ; ocamlopt : Path.t option ; ocamldep : Path.t - ; ocamllex : Path.t - ; ocamlyacc : Path.t ; ocamlmklib : Path.t ; (** Environment variables *)