Skip to content

Commit

Permalink
blind fix for windows path
Browse files Browse the repository at this point in the history
  • Loading branch information
gares committed Nov 25, 2023
1 parent e1ee443 commit bb2c386
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
9 changes: 8 additions & 1 deletion apps/coercion/Makefile.coq.local
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
CAMLPKGS+= -package coq-elpi.elpi
OCAMLPATH:=../../src/:$(OCAMLPATH)

ifeq "$(shell which cygpath >/dev/null 2>&1)" ""
OCAMLFINDSEP=:
else
OCAMLFINDSEP=;
endif

OCAMLPATH:=../../src/$(OCAMLFINDSEP)$(OCAMLPATH)
export OCAMLPATH
9 changes: 8 additions & 1 deletion apps/tc/Makefile.coq.local
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
CAMLPKGS+= -package coq-elpi.elpi
OCAMLPATH:=../../src/:$(OCAMLPATH)

ifeq "$(shell which cygpath >/dev/null 2>&1)" ""
OCAMLFINDSEP=:
else
OCAMLFINDSEP=;
endif

OCAMLPATH:=../../src/$(OCAMLFINDSEP)$(OCAMLPATH)
export OCAMLPATH

install-extra::
Expand Down

0 comments on commit bb2c386

Please sign in to comment.