aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2015-09-24 19:13:30 +0200
committerPierre-Marie Pédrot2015-09-25 11:19:08 +0200
commit3930c586507bfb3b80297d7a2fdbbc6049aa509b (patch)
treed6fa4c001548134886554e660c6eb58df3ef8020 /tools
parentb6725a2d0077239e51385a62a526ab9465eea26d (diff)
Updating the documentation and the toolchain w.r.t. the change in -compile.
Diffstat (limited to 'tools')
-rw-r--r--tools/coqc.ml7
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/coqc.ml b/tools/coqc.ml
index 5710b97f2a..e7239da682 100644
--- a/tools/coqc.ml
+++ b/tools/coqc.ml
@@ -30,13 +30,8 @@ let verbose = ref false
let rec make_compilation_args = function
| [] -> []
| file :: fl ->
- let file_noext =
- if Filename.check_suffix file ".v" then
- Filename.chop_suffix file ".v"
- else file
- in
(if !verbose then "-compile-verbose" else "-compile")
- :: file_noext :: (make_compilation_args fl)
+ :: file :: (make_compilation_args fl)
(* compilation of files [files] with command [command] and args [args] *)