From: Kim Nguyễn Date: Sun, 10 Mar 2013 11:33:07 +0000 (+0100) Subject: Change the path to the root directory before attempting to open X-Git-Tag: v0.1~144 X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=commitdiff_plain;h=38cbd62f27eb7e1f461bc764cc89366557ec0124 Change the path to the root directory before attempting to open any file in the build script --- diff --git a/build b/build index 1be54af..2b29bba 100755 --- a/build +++ b/build @@ -36,6 +36,10 @@ let () = let oprofile = if !profile then " -tag profile " else "" let odebug = if !profile then " -tag debug " else "" let clean_first = ref false +let () = + Sys.chdir project_root; + Printf.printf "Entering directory `%s'\n%!" project_root + let otarget = List.fold_left (fun acc t -> if t = "clean" || t = "-clean" then (clean_first := true; acc) else @@ -46,9 +50,6 @@ let otarget = List.fold_left (fun acc t -> in t ^ " " ^ acc) "" (if (!target == []) then [ "main.otarget" ] else !target) let overbose = if !verbose then " -classic-display " else "" -let () = - Sys.chdir project_root; - Printf.printf "Entering directory `%s'\n%!" project_root let clean_cmd = if !clean_first then "ocamlbuild -clean;" else "" let build_cmd = if otarget = "" then "" else Printf.sprintf "ocamlbuild -use-ocamlfind %s %s %s %s"