Lines Matching +full:local +full:- +full:dir
2 # Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved.
9 # On some systems, the -p option to mkdir (= also create any missing parent
21 local($dir) = @_;
23 $dir =~ s|/*\Z(?!\n)||s;
25 if (-d $dir) {
29 if ($dir =~ m|[^/]/|s) {
30 local($parent) = $dir;
36 unless (mkdir($dir, 0777)) {
37 local($err) = $!;
38 if (-d $dir) {
42 die "Cannot create directory $dir: $err\n";
44 print "created directory `$dir'\n";