utils/mkdir-p: check if dir exists also after mkdir failed
authorSebastian Andrzej Siewior <sebastian@breakpoint.cc>
Fri, 10 Jun 2016 18:04:51 +0000 (20:04 +0200)
committerRich Salz <rsalz@openssl.org>
Thu, 23 Jun 2016 15:10:29 +0000 (11:10 -0400)
with "make install -j8" it happens very often that two or more make
instances are creating the same directory in parallel. As a result one
instace creates the directory and second mkdir fails because the
directory exists already (but it did not while testing for it earlier).

Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1204)

util/mkdir-p.pl

index 4f44266802c041a8a885e85f689c9196cad949be..328060243f3c5ad18f30803ce3716cc1cdfe86fe 100755 (executable)
@@ -33,6 +33,12 @@ sub do_mkdir_p {
     do_mkdir_p($parent);
   }
 
     do_mkdir_p($parent);
   }
 
-  mkdir($dir, 0777) || die "Cannot create directory $dir: $!\n";
+  unless (mkdir($dir, 0777)) {
+    if (-d $dir) {
+      # We raced against another instance doing the same thing.
+      return;
+    }
+    die "Cannot create directory $dir: $!\n";
+  }
   print "created directory `$dir'\n";
 }
   print "created directory `$dir'\n";
 }