summaryrefslogtreecommitdiff
path: root/src/Translate.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/Translate.ml')
-rw-r--r--src/Translate.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Translate.ml b/src/Translate.ml
index 740670f9..57b92e44 100644
--- a/src/Translate.ml
+++ b/src/Translate.ml
@@ -685,7 +685,7 @@ let translate_module (filename : string) (dest_dir : string) (config : config)
if not (Sys.file_exists dest_dir) then (
log#linfo (lazy ("Creating missing directory: " ^ dest_dir));
(* Create a directory with *default* permissions *)
- Core.Unix.mkdir_p dest_dir);
+ Core_unix.mkdir_p dest_dir);
(* Copy "Primitives.fst" - I couldn't find a "cp" function in the OCaml
* libraries... *)