diff options
| author | Emilio Jesus Gallego Arias | 2020-03-31 21:07:51 -0400 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2020-03-31 21:07:51 -0400 |
| commit | dc723c2aa614e6b31ef5a4c9764ff92c0860880e (patch) | |
| tree | 444bd2b314fac62e292e21abd43a08fd4eda4f33 | |
| parent | 04af77a6b138bb139751053d63651f7187ea9952 (diff) | |
| parent | b3513cb3843a0fda58cf0e17ff21e58112e3dae8 (diff) | |
Merge PR #11933: Fix calling test suite makefile with a dune built coq
Reviewed-by: ejgallego
| -rw-r--r-- | test-suite/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test-suite/Makefile b/test-suite/Makefile index 0d8a6ebed7..eade52b6eb 100644 --- a/test-suite/Makefile +++ b/test-suite/Makefile @@ -38,7 +38,8 @@ ROOT='$(shell cd ..; pwd)' ifneq ($(wildcard ../_build),) BIN:=$(ROOT)/_build/install/default/bin/ -COQLIB:=$(ROOT)/_build/install/default/lib/coq +# COQLIB is an env variable so no quotes +COQLIB:=$(shell cd ..; pwd)/_build/install/default/lib/coq else BIN := $(ROOT)/bin/ |
