aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorletouzey2012-10-08 12:44:47 +0000
committerletouzey2012-10-08 12:44:47 +0000
commit3b5a04293d7dbbaded53a129c7b010ad02aa0bc4 (patch)
tree32096994cbc9d7a5150dd0fe442e195a8a5acbbc /tools
parent8a068af4615a7fd85b2328274fef606539cc6b9a (diff)
fix r15860 : no slash after $(COQLIB)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15882 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tools')
-rw-r--r--tools/coq_makefile.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/coq_makefile.ml b/tools/coq_makefile.ml
index 88ffb14ab0..a608f59bc4 100644
--- a/tools/coq_makefile.ml
+++ b/tools/coq_makefile.ml
@@ -408,7 +408,7 @@ let variables is_install opt (args,defs) =
-I $(COQLIB)proofs -I $(COQLIB)tactics -I $(COQLIB)tools \\
-I $(COQLIB)toplevel -I $(COQLIB)grammar";
List.iter (fun c -> print " \\
- -I $(COQLIB)/"; print c) Coq_config.plugins_dirs; print "\n";
+ -I $(COQLIB)"; print c) Coq_config.plugins_dirs; print "\n";
print "ZFLAGS=$(OCAMLLIBS) $(COQSRCLIBS) -I $(CAMLP4LIB)\n\n";
print "CAMLC?=$(OCAMLC) -c\n";
print "CAMLOPTC?=$(OCAMLOPT) -c\n";