aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/coqdoc
diff options
context:
space:
mode:
authorGravatar Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2017-08-21 15:30:48 +0200
committerGravatar Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2017-08-21 15:30:48 +0200
commitaf6a390219de9eb1a91ffd9f5ca15a2d2253e978 (patch)
treed89089d341e9a8d20224e7f59ac142d3c894b414 /tools/coqdoc
parent851a01d27f22e708029237db5fe5fd5d4fedcafe (diff)
Fix coqdoc URLs under Windows.
URLs on Windows are the same as on Unix, they use / not \.
Diffstat (limited to 'tools/coqdoc')
-rw-r--r--tools/coqdoc/index.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/coqdoc/index.ml b/tools/coqdoc/index.ml
index 8ba615670..1bbf76490 100644
--- a/tools/coqdoc/index.ml
+++ b/tools/coqdoc/index.ml
@@ -117,7 +117,7 @@ let find_module m =
if Hashtbl.mem local_modules m then
Local
else
- try External (Filename.concat (find_external_library m) m)
+ try External (find_external_library m ^ "/" ^ m)
with Not_found -> Unknown