aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure.ml
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2016-06-18 14:56:56 -0700
committerGravatar Jason Gross <jgross@mit.edu>2016-06-18 14:56:56 -0700
commita3713013926e037d611fab101651360485d4bd85 (patch)
tree3e01ca93aac1086a04fb0f4aedefb4368c2b29be /configure.ml
parent6bfdd3efccf852dad84b393b9272293434d65725 (diff)
Fix path separator on windows
Diffstat (limited to 'configure.ml')
-rw-r--r--configure.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ml b/configure.ml
index d253eecd9..2e7bf1854 100644
--- a/configure.ml
+++ b/configure.ml
@@ -190,7 +190,7 @@ let win_aware_quote_executable str =
else
let _ = if contains_suspicious_characters str then
printf "*Warning* The string %S contains suspicious characters; ocamlfind might fail\n" str in
- str
+ Str.global_replace (Str.regexp "\\\\") "/" str
(** * Date *)