diff options
| author | Enrico Tassi | 2017-05-15 11:06:57 +0200 |
|---|---|---|
| committer | Enrico Tassi | 2017-05-23 10:48:28 +0200 |
| commit | 2423f9e58e74dcb2fe9f3ddbbd417e5e1bf1ef24 (patch) | |
| tree | 96f8f3d92a6121704512791a3ccfedf3f6c7c3ba /tools | |
| parent | 3759772965ba91a56f0a6614c192347fd0283edc (diff) | |
coq_makefile: avoid spurious ./ in generated .conf file
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/CoqMakefile.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/CoqMakefile.in b/tools/CoqMakefile.in index 11d9438fe2..1de7a5c243 100644 --- a/tools/CoqMakefile.in +++ b/tools/CoqMakefile.in @@ -168,7 +168,6 @@ vo_to_obj = $(addsuffix .o,\ $(filter-out Warning: Error:,\ $(shell $(COQBIN)coqtop -q -noinit -batch -quiet -print-mod-uid $(1)))) strip_dotslash = $(patsubst ./%,%,$(1)) -uniform_dotslash = $(addprefix ./,$(call strip_dotslash,$(1))) VO = vo VOFILES = $(VFILES:.v=.$(VO)) @@ -200,13 +199,13 @@ CMXSFILES = \ # files that are packed into a plugin (no extension) PACKEDFILES = \ - $(call uniform_dotslash, \ + $(call strip_dotslash, \ $(foreach lib, \ $(call strip_dotslash, \ $(MLPACKFILES:.mlpack=_MLPACK_DEPENDENCIES)),$($(lib)))) # files that are archived into a .cma (mllib) LIBEDFILES = \ - $(call uniform_dotslash, \ + $(call strip_dotslash, \ $(foreach lib, \ $(call strip_dotslash, \ $(MLLIBFILES:.mllib=_MLLIB_DEPENDENCIES)),$($(lib)))) |
