From: Claudio Sacerdoti Coen Date: Tue, 6 Mar 2012 16:25:44 +0000 (+0000) Subject: Workaround for a BSD bug (submitted by Boender). X-Git-Tag: make_still_working~1896 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=1a11ddfaed43c681cf15f180b90ad429e092a219;p=helm.git Workaround for a BSD bug (submitted by Boender). --- diff --git a/matita/components/extlib/hExtlib.ml b/matita/components/extlib/hExtlib.ml index 0b13cd83e..8871a35df 100644 --- a/matita/components/extlib/hExtlib.ml +++ b/matita/components/extlib/hExtlib.ml @@ -437,6 +437,7 @@ let mkdir path = Unix.mkdir path 0o755; chmod 0o2775 path with | Unix.Unix_error (Unix.EEXIST,_,_) -> () + | Unix.Unix_error (Unix.EISDIR,_,_) -> () (* work-around for a bug in FreeBSD *) | Unix.Unix_error (e,_,_) -> raise (Failure