Skip to content

Commit bb2c386

Browse files
committed
blind fix for windows path
1 parent e1ee443 commit bb2c386

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

apps/coercion/Makefile.coq.local

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
CAMLPKGS+= -package coq-elpi.elpi
2-
OCAMLPATH:=../../src/:$(OCAMLPATH)
2+
3+
ifeq "$(shell which cygpath >/dev/null 2>&1)" ""
4+
OCAMLFINDSEP=:
5+
else
6+
OCAMLFINDSEP=;
7+
endif
8+
9+
OCAMLPATH:=../../src/$(OCAMLFINDSEP)$(OCAMLPATH)
310
export OCAMLPATH

apps/tc/Makefile.coq.local

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
CAMLPKGS+= -package coq-elpi.elpi
2-
OCAMLPATH:=../../src/:$(OCAMLPATH)
2+
3+
ifeq "$(shell which cygpath >/dev/null 2>&1)" ""
4+
OCAMLFINDSEP=:
5+
else
6+
OCAMLFINDSEP=;
7+
endif
8+
9+
OCAMLPATH:=../../src/$(OCAMLFINDSEP)$(OCAMLPATH)
310
export OCAMLPATH
411

512
install-extra::

0 commit comments

Comments
 (0)