We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52d81e4 commit b956fa5Copy full SHA for b956fa5
src-opam/opam.ml
@@ -65,10 +65,11 @@ let install_opam_from_source_windows ?cyg ?prefix
65
(if msvs then msvs_env else "")
66
(if msvs then ocaml_port else "")
67
@@ Windows.Cygwin.run_sh ?cyg
68
- "cd /tmp/opam-build-%s && %s./configure --enable-cold-check \
69
- --with-private-runtime%s%s && make && make install"
+ "cd /tmp/opam-build-%s && %s./configure --enable-cold-check %s%s%s && \
+ make && make install"
70
branch
71
72
+ (if msvs then "" else "--with-private-runtime")
73
(Option.fold prefix ~none:"" ~some:(fun prefix ->
74
Printf.sprintf {| --prefix="%s"|} prefix))
75
(if enable_0install_solver then " --with-0install-solver" else "")
0 commit comments