Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makefile: remove inclusion which leads to confusing errors
This line gives some bad errors whenever ocamlfind is not in the PATH or the visitors package is not installed, and may carry on with the Makefile regardless of that failure (attempting to include /Makefile.preprocess along the way). $ make make: ocamlfind: No such file or directory Makefile:2: /Makefile.preprocess: No such file or directory make: *** No rule to make target '/Makefile.preprocess'. Stop. This patch makes the Makefile provide more helpful errors in both these situations: $ make make: ocamlfind: No such file or directory Makefile:7: *** "'ocamlfind query' failed, please install OCaml and put it in your PATH. Stop. $ make ocamlfind: Package `visitors' not found Makefile:11: *** "'ocamlfind query visitors' failed, please 'opam install visitors'. Stop.
- Loading branch information