diff options
| author | Gaëtan Gilbert | 2020-03-26 23:17:15 +0100 |
|---|---|---|
| committer | Gaëtan Gilbert | 2020-03-26 23:17:15 +0100 |
| commit | b3513cb3843a0fda58cf0e17ff21e58112e3dae8 (patch) | |
| tree | b0f403e7590a4b2da01873e1aa962a14dc2c1ae2 | |
| parent | 5f5f9520ccf0f107d381e5874a3743f47e37c409 (diff) | |
Fix calling test suite makefile with a dune built coq
| -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/ |
