aboutsummaryrefslogtreecommitdiff
path: root/lib/system.ml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/system.ml')
-rw-r--r--lib/system.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.ml b/lib/system.ml
index 5da2d9f357..f6da6f8661 100644
--- a/lib/system.ml
+++ b/lib/system.ml
@@ -28,7 +28,7 @@ let all_subdirs root =
try
while true do
let f = readdir dirh in
- if f <> "." && f <> ".." then
+ if f <> "." && f <> ".." && (not Coq_config.local or (f <> "CVS")) then
let file = Filename.concat dir f in
if (stat file).st_kind = S_DIR then begin
let newrel = Filename.concat rel f in