aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/coq_makefile.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/coq_makefile.ml b/tools/coq_makefile.ml
index ff4b8bd600..80217587d5 100644
--- a/tools/coq_makefile.ml
+++ b/tools/coq_makefile.ml
@@ -812,11 +812,11 @@ let merlin targets (ml_inc,_,_) =
print ".merlin:\n";
print "\t@echo 'FLG -rectypes' > .merlin\n" ;
List.iter (fun c ->
- print "\t@echo \"B $(COQLIB)" ; print c ; print "\" >> .merlin\n")
+ printf "\t@echo \"B $(COQLIB) %s\" >> .merlin\n" c)
lib_dirs ;
List.iter (fun (_,c) ->
- print "\t@echo \"B " ; print c ; print "\" >> .merlin\n" ;
- print "\t@echo \"S " ; print c ; print "\" >> .merlin\n")
+ printf "\t@echo \"B %s\" >> .merlin\n" c;
+ printf "\t@echo \"S %s\" >> .merlin\n" c)
ml_inc;
print "\n"