summaryrefslogtreecommitdiff
path: root/utils/ccomp.ml
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2007-02-25 14:58:21 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2007-02-25 14:58:21 +0000
commit8848bf23b9779b406212443fde443566ab4a2f47 (patch)
tree53340eacfa3822c7ae1e862ee0b9ab9a2b3feaab /utils/ccomp.ml
parentefbf67e517d799bb62454de08617dfec7848a36c (diff)
downloadocaml-8848bf23b9779b406212443fde443566ab4a2f47.tar.gz
Invocation of mt.exe (from D.Weil)
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@7922 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'utils/ccomp.ml')
-rw-r--r--utils/ccomp.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ccomp.ml b/utils/ccomp.ml
index fe8c0034aa..c44bb64c3f 100644
--- a/utils/ccomp.ml
+++ b/utils/ccomp.ml
@@ -104,7 +104,7 @@ let merge_manifest exefile =
let manfile = exefile ^ ".manifest" in
if not (Sys.file_exists manfile) then 0 else begin
let retcode =
- command (Printf.sprintf "mt -nologo -outputresource:%s -manifest:%s"
+ command (Printf.sprintf "mt -nologo -outputresource:%s -manifest %s"
(Filename.quote exefile)
(Filename.quote manfile)) in
Misc.remove_file manfile;