-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68650ed
commit bdcfab7
Showing
2 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
resources/patches/openssl/openssl-3.0.13-create-dir-win.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/Configure b/Configure | ||
index 84cc409464..bdf4f3c460 100755 | ||
--- a/Configure | ||
+++ b/Configure | ||
@@ -3409,7 +3409,8 @@ sub absolutedir { | ||
# We use realpath() on Unix, since no other will properly clean out | ||
# a directory spec. | ||
use Cwd qw/realpath/; | ||
- | ||
+ | ||
+ mkdir $dir unless -d $dir; | ||
return realpath($dir); | ||
} | ||
|