aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--scripts/coqmktop.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/coqmktop.ml b/scripts/coqmktop.ml
index a58826c41..b18733f74 100644
--- a/scripts/coqmktop.ml
+++ b/scripts/coqmktop.ml
@@ -288,7 +288,7 @@ let main () =
(* the list of the loaded modules *)
let main_file = create_tmp_main_file modules in
try
- let args = (includes ()) @ options @ tolink @ dynlink @ [ main_file ] in
+ let args = options @ (includes ()) @ tolink @ dynlink @ [ main_file ] in
(* Now, with the .cma, we MUST use the -linkall option *)
let command = String.concat " " ((prog^" -linkall")::args) in
if !echo then begin print_endline command; flush Pervasives.stdout end;