diff options
| author | Gaëtan Gilbert | 2019-11-07 16:04:11 +0100 |
|---|---|---|
| committer | Gaëtan Gilbert | 2019-11-19 14:51:30 +0100 |
| commit | 2f7cf5ae0c22bc802f75cccbd863be2c23630496 (patch) | |
| tree | f704fcba79ea29a6212d564ec458b9e8ed8c150c | |
| parent | 69978e0a33d555392fd8a3d7802d28188dd6238b (diff) | |
coq_makefile: support COQBIN with no ending /
Close #6460
| -rw-r--r-- | doc/changelog/08-tools/11068-coqbin-noslash.rst | 3 | ||||
| -rw-r--r-- | tools/CoqMakefile.in | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/doc/changelog/08-tools/11068-coqbin-noslash.rst b/doc/changelog/08-tools/11068-coqbin-noslash.rst new file mode 100644 index 0000000000..c2c8f4df31 --- /dev/null +++ b/doc/changelog/08-tools/11068-coqbin-noslash.rst @@ -0,0 +1,3 @@ +- ``coq_makefile`` now supports environment variable ``COQBIN`` with + no ending ``/`` character (`#11068 + <https://github.com/coq/coq/pull/11068>`_, by Gaëtan Gilbert). diff --git a/tools/CoqMakefile.in b/tools/CoqMakefile.in index abfbd66e28..27f9a0f8c6 100644 --- a/tools/CoqMakefile.in +++ b/tools/CoqMakefile.in @@ -78,6 +78,11 @@ else STDTIME?=command time -f $(TIMEFMT) endif +ifneq (,$(COQBIN)) +# add an ending / +COQBIN:=$(COQBIN)/ +endif + # Coq binaries COQC ?= "$(COQBIN)coqc" COQTOP ?= "$(COQBIN)coqtop" |
