| 
									
										
										
										
											2016-04-20 10:10:43 +08:00
										 |  |  | #! /usr/bin/env perl | 
					
						
							|  |  |  | # Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Licensed under the OpenSSL license (the "License").  You may not use | 
					
						
							|  |  |  | # this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  | # in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  | # https://www.openssl.org/source/license.html | 
					
						
							| 
									
										
										
										
											1999-06-07 21:33:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | # On some systems, the -p option to mkdir (= also create any missing parent | 
					
						
							|  |  |  | # directories) is not available. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | my $arg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | foreach $arg (@ARGV) { | 
					
						
							| 
									
										
										
										
											2005-11-07 01:58:26 +08:00
										 |  |  |   $arg =~ tr|\\|/|; | 
					
						
							| 
									
										
										
										
											1999-06-07 21:33:50 +08:00
										 |  |  |   &do_mkdir_p($arg); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | sub do_mkdir_p { | 
					
						
							|  |  |  |   local($dir) = @_; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-08 18:17:55 +08:00
										 |  |  |   $dir =~ s|/*\Z(?!\n)||s; | 
					
						
							| 
									
										
										
										
											1999-06-07 21:33:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   if (-d $dir) { | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-08 18:17:55 +08:00
										 |  |  |   if ($dir =~ m|[^/]/|s) { | 
					
						
							| 
									
										
										
										
											1999-06-07 21:33:50 +08:00
										 |  |  |     local($parent) = $dir; | 
					
						
							| 
									
										
										
										
											1999-06-08 18:17:55 +08:00
										 |  |  |     $parent =~ s|[^/]*\Z(?!\n)||s; | 
					
						
							| 
									
										
										
										
											1999-06-07 21:33:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     do_mkdir_p($parent); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-11 02:04:51 +08:00
										 |  |  |   unless (mkdir($dir, 0777)) { | 
					
						
							|  |  |  |     if (-d $dir) { | 
					
						
							|  |  |  |       # We raced against another instance doing the same thing. | 
					
						
							|  |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     die "Cannot create directory $dir: $!\n"; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											1999-06-08 18:17:55 +08:00
										 |  |  |   print "created directory `$dir'\n"; | 
					
						
							| 
									
										
										
										
											1999-06-07 21:33:50 +08:00
										 |  |  | } |