aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar lmamane <lmamane@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-03-26 03:31:03 +0000
committerGravatar lmamane <lmamane@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-03-26 03:31:03 +0000
commitf0d5dd5b65652d7c5b7af02a9de161f7b95588e5 (patch)
treeb0e89b60a8d61caba1dd74fcf92d0682e7d82d81
parenta4d372963f0a98186560fb7367324c604b93095a (diff)
bin/coq-{parser,interface}: use this coqtop, not the first in $PATH
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12015 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--Makefile.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.build b/Makefile.build
index 5894c133b..16e7cdaa4 100644
--- a/Makefile.build
+++ b/Makefile.build
@@ -366,12 +366,12 @@ else
bin/coq-interface$(EXE):
echo "#!/bin/sh" > $@
- echo "exec coqtop -require CoqInterface" >> $@
+ echo 'exec '$(BINDIR)'/coqtop -require CoqInterface' >> $@
chmod +x $@
bin/coq-parser$(EXE):
echo "#!/bin/sh" > $@
- echo "exec coqtop -batch -l CoqParser" >> $@
+ echo 'exec '$(BINDIR)'/coqtop -batch -l CoqParser' >> $@
chmod +x $@
endif # of HASNATDYNLINK