diff options
author | notin <notin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2008-11-06 11:55:35 +0000 |
---|---|---|
committer | notin <notin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2008-11-06 11:55:35 +0000 |
commit | 80881f5f94597fc31734f5e439d5fda01a834fc4 (patch) | |
tree | 656f1a7eab5f055d09ed1626a37f9371295444b2 /tools | |
parent | 792c7e078754f440ab16b0420a4ea045d7daccef (diff) |
Correction d'un petit bug en cas de redéfintion par l'utilisateur de variables utilisées dans PP
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11546 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tools')
-rw-r--r-- | tools/coq_makefile.ml4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/coq_makefile.ml4 b/tools/coq_makefile.ml4 index d65270f51..a27efe714 100644 --- a/tools/coq_makefile.ml4 +++ b/tools/coq_makefile.ml4 @@ -188,9 +188,9 @@ let variables l = printf "CAMLOPTLINK:=$(CAMLBIN)%s -rectypes\n" best_ocamlopt; print "GRAMMARS:=grammar.cma\n"; print "CAMLP4EXTEND:=pa_extend.cmo pa_macro.cmo q_MLast.cmo\n"; - print "CAMLP4OPTIONS=\n"; - print "PP:=-pp \"$(CAMLP4BIN)$(CAMLP4)o -I . $(COQSRCLIBS) $(CAMLP4EXTEND) $(GRAMMARS) $(CAMLP4OPTIONS) -impl\"\n"; + print "CAMLP4OPTIONS:=\n"; var_aux l; + print "PP:=-pp \"$(CAMLP4BIN)$(CAMLP4)o -I . $(COQSRCLIBS) $(CAMLP4EXTEND) $(GRAMMARS) $(CAMLP4OPTIONS) -impl\"\n"; print "\n" let absolute_dir dir = |