Skip to content

Commit

Permalink
[fix] compilation: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederic Ye committed Jul 11, 2012
1 parent b1948f2 commit abc9f99
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion compiler/qml2ocaml/qml2ocaml.ml
Expand Up @@ -585,7 +585,7 @@ prerr_endline \"CHECKUP - LIBS - OK\"
) options.O.extra_lib
in

let extra_lib_native = String.concat_map " " substitute_lib_extension_native extralib in
let extra_lib_native = String.concat_map " " substitute_lib_extension_native extra_lib in
let extra_lib_bytecode = String.concat_map " " substitute_lib_extension_bytecode extra_lib in

(* options for compiler & linker *)
Expand Down
9 changes: 5 additions & 4 deletions tools/build/build_rules.ml
Expand Up @@ -490,10 +490,11 @@ let opabsl_files =
])
in

List.iter (fun file ->
let tags = Tags.elements (tags_of_pathname ("plugins"/"opabsl"/file)) in
tag_file ("opabsl.opp"/file) tags
) ["opabslPlugin.ml"; "opabslMLRuntime.ml"
List.iter (
fun file ->
let tags = Tags.elements (tags_of_pathname ("plugins"/"opabsl"/file)) in
tag_file ("opabsl.opp"/file) tags
) ["opabslPlugin.ml"; "opabslMLRuntime.ml";
"opabslLoader.ml"; "serverLib.mli"]
;

Expand Down

0 comments on commit abc9f99

Please sign in to comment.