Skip to content
This repository was archived by the owner on Mar 1, 2019. It is now read-only.

Commit 2255891

Browse files
authored
Merge pull request #34 from pveber/unset-verbose-ocamlmklib
remove verbose option from ocamlmklib calls
2 parents 8f0589b + 99444d9 commit 2255891

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/project.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ let build_lib (x:lib) =
749749
Filename.normalize
750750
in
751751
Rule.rule ~deps:(deps@clibs) ~prods:[prod] (fun _ _ ->
752-
ocamlmklib ~verbose:() ~o deps
752+
ocamlmklib ~o deps
753753
)
754754
);
755755

@@ -762,7 +762,7 @@ let build_lib (x:lib) =
762762
Filename.normalize
763763
in
764764
Rule.rule ~deps ~prods:clibs (fun _ _ ->
765-
ocamlmklib ~verbose:() ~o deps
765+
ocamlmklib ~o deps
766766
)
767767
)
768768
)

0 commit comments

Comments
 (0)