let args = List.rev !args in
let debug_flag = !debug_flag in
let directory = !directory in
- let input_file = absolute_path !input_file in
+ let input_file = !input_file in
(* Don't reverse includes - we want newer -I options to take precedence. *)
- let includes = List.map absolute_path !includes in
+ let includes = !includes in
let use_prelude = !use_prelude in
(* Get the anon var assignments and targets. *)
(** Get the absolute path of the prelude.sh file. *)
val input_file : string
-(** Get the name of the input Goalfile.
- This is an absolute path. *)
+(** Get the name of the input Goalfile. *)
val debug : ('a, unit, string, unit) format4 -> 'a
(** If debugging is enabled (-d option) then print the formatted
(** Get the name of working directory (-C option). *)
val includes : string list
-(** Get list of include directories (-I option).
- These are all absolute paths. *)
+(** Get list of include directories (-I option). *)
val use_prelude : bool
(** True if we should load the prelude, or false if --no-prelude. *)