From ca5dd2f7d17ccdde9dd01642f1064fd01784571d Mon Sep 17 00:00:00 2001 From: Drup Date: Sat, 13 Dec 2014 03:31:17 +0100 Subject: [PATCH] Fix myocamlbuild. --- myocamlbuild.ml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/myocamlbuild.ml b/myocamlbuild.ml index 8686ebd8..b1fcf356 100644 --- a/myocamlbuild.ml +++ b/myocamlbuild.ml @@ -1,7 +1,7 @@ (* OASIS_START *) (* OASIS_STOP *) -let doc_intro = "doc/intro.txt" +let doc_intro = "doc/intro.txt";; open Ocamlbuild_plugin;; @@ -45,9 +45,10 @@ dispatch flag ["cppo"] & S[A"-D"; A ocaml_major; A"-D"; A ocaml_minor] ; (* Documentation index *) + let open Ocamlbuild_plugin in dep ["ocaml"; "doc"; "extension:html"] & [doc_intro] ; flag ["ocaml"; "doc"; "extension:html"] & - (S[A"-t"; A"LILiS user guide"; + (S[A"-t"; A"Containers user guide"; A"-intro"; P doc_intro; ]);