From 06e521e61835022bb8fc2368fc190cb31a077687 Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Sat, 7 Jan 2017 19:37:53 -0500 Subject: Kludge to get a Windows-valid .dir-locals.el Pass in PATHSEP=";" to `make .dir-locals.el`. Hopefully I'll find a better way soon. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 58b0614cb..20ae25d12 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,8 @@ VERBOSE?= SHOW := $(if $(VERBOSE),@true "",@echo "") HIDE := $(if $(VERBOSE),,@) +PATHSEP?=: + .PHONY: coq clean update-_CoqProject cleanall install \ install-coqprime clean-coqprime coqprime \ specific non-specific \ @@ -130,4 +132,4 @@ printenv:: @echo "COQPATH = $$COQPATH" .dir-locals.el:: - sed 's:@COQPRIME@:$(COQPRIME_FOLDER):g' .dir-locals.el.in > $@ + sed 's:@COQPRIME@:$(COQPRIME_FOLDER):g' .dir-locals.el.in | sed s'/@PATHSEP@/$(PATHSEP)/g' > $@ -- cgit v1.2.3