commit 216cc51c709fc6a106cbc1810c08b69c1e344687 Author: Christoph Cullmann Date: Sun Mar 3 14:10:03 2019 +0100 fix Ocamlmklib, bug 25950 diff --git a/src/tools/ocamlmklib.ml b/src/tools/ocamlmklib.ml index 3d7fdd6d5..34a033a7b 100644 --- a/src/tools/ocamlmklib.ml +++ b/src/tools/ocamlmklib.ml @@ -18,8 +18,8 @@ open Ocamlmklibconfig (* PR#4783: under Windows, don't use absolute paths because we do not know where the binary distribution will be installed. *) -let compiler_path name = - if Sys.os_type = "Win32" then name else Filename.concat bindir name +let compiler_path name = name + (*if Sys.os_type = "Win32" then name else Filename.concat bindir name *) let bytecode_objs = ref [] (* .cmo,.cma,.ml,.mli files to pass to ocamlc *) and native_objs = ref [] (* .cmx,.cmxa,.ml,.mli files to pass to ocamlopt *)