small change in doc/build_deps.ml

This commit is contained in:
Simon Cruanes 2015-02-18 16:53:28 +01:00
parent 705fcff4ec
commit f6ea8b0aa2

View file

@ -18,9 +18,12 @@ let odoc_files =
|> Gen.to_list
;;
let out = "deps.dot";;
let cmd =
"ocamldoc -dot -o deps.dot " ^ String.concat " " odoc_files
"ocamldoc -dot -o " ^ out ^ " " ^ String.concat " " odoc_files
;;
print_endline ("run: " ^ cmd);;
Unix.system cmd;;
print_endline ("output in " ^ out);;