aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Sozeau2015-07-07 16:02:35 +0200
committerMatthieu Sozeau2015-07-07 16:02:35 +0200
commit024a7ab20b06d82571c68c3d2ac32cb60fb0053a (patch)
treeae813bd2a2f9f060e5031be3471ae477c0cb975c
parent6f2db13c8677fd0148279483359e75b9f128aebc (diff)
test-suite: Fix test-suite Makefile
Using relative path for coqlib, for some reason this fails on Mac OS X. Took the easiest way to fix it.
-rw-r--r--test-suite/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/Makefile b/test-suite/Makefile
index 476d850ac9..d2466250ab 100644
--- a/test-suite/Makefile
+++ b/test-suite/Makefile
@@ -28,7 +28,7 @@
# Default value when called from a freshly compiled Coq, but can be
# easily overridden
BIN := ../bin/
-LIB := ..
+LIB := $(shell cd ..; pwd)
coqtop := $(BIN)coqtop -boot -q -batch -test-mode -R prerequisite TestSuite
bincoqc := $(BIN)coqc -coqlib $(LIB) -R prerequisite TestSuite