diff options
author | glondu <glondu@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2010-10-16 08:04:34 +0000 |
---|---|---|
committer | glondu <glondu@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2010-10-16 08:04:34 +0000 |
commit | d25dfc1a30ab227178f8cd4304f28a35f4d7e19d (patch) | |
tree | 0a08f6ba8dcb574151dcf00f1ab747d461f1060b /test-suite/Makefile | |
parent | f8537e7ec6925931d5a5b454072820634ee1fb47 (diff) |
Fix missing -coqlib argument to coqdep in test-suite
The test misc/deps-order was failing in non-local mode.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13560 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/Makefile')
-rw-r--r-- | test-suite/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/Makefile b/test-suite/Makefile index 7bd8d4dcf..6c3d59dfd 100644 --- a/test-suite/Makefile +++ b/test-suite/Makefile @@ -40,7 +40,7 @@ endif command := $(coqtop) -top Top -load-vernac-source coqc := $(coqtop) -compile -coqdep := $(BIN)coqdep +coqdep := $(BIN)coqdep -coqlib $(LIB) SHOW := $(if $(VERBOSE),@true,@echo) HIDE := $(if $(VERBOSE),,@) |