diff options
| author | Maxime Dénès | 2015-01-13 15:40:58 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2015-01-13 15:40:58 +0100 |
| commit | 4cc324272b1f08d150417bf5333a51a39ce36336 (patch) | |
| tree | ebf54592a1acb38cdf077da875581a3c655517ec /tools | |
| parent | 2ae01e839df66f13ff1d3bc974cea50a33126c59 (diff) | |
Made -print-mod-uid more silent and robust.
This is a follow-up on Pierre's 5d80a385.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/coq_makefile.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/coq_makefile.ml b/tools/coq_makefile.ml index 65ba57ca83..b73fdba1e6 100644 --- a/tools/coq_makefile.ml +++ b/tools/coq_makefile.ml @@ -506,8 +506,8 @@ let parameters () = print "TIMED=\nTIMECMD=\nSTDTIME?=/usr/bin/time -f \"$* (user: %U mem: %M ko)\"\n"; print "TIMER=$(if $(TIMED), $(STDTIME), $(TIMECMD))\n\n"; print "vo_to_obj = $(addsuffix .o,$(foreach vo,$(1),\\\n"; - print " $(addprefix $(dir $(vo)),.coq-native/$(filter-out Warning: Error:,$(firstword \\\n"; - print " $(shell $(COQBIN)coqtop -batch -quiet -print-mod-uid $(vo:.vo=)))))))\n\n" + print " $(addprefix $(dir $(vo)),$(addprefix .coq-native/,$(filter-out Warning: Error:,$(firstword \\\n"; + print " $(shell $(COQBIN)coqtop -batch -quiet -print-mod-uid $(vo))))))))\n\n" let include_dirs (inc_ml,inc_i,inc_r) = let parse_ml_includes l = List.map (fun (x,_) -> "-I \"" ^ x ^ "\"") l in |
