Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2008-12-19 16:35:09 +0300
committerAndy Polyakov <appro@openssl.org>2008-12-19 16:35:09 +0300
commit75bbf6e14c14583a7fd3c1ca03888d4eb5568d4f (patch)
tree5558c86fc14f05000733694b8ebe05b7f78eefe4 /util/mklink.pl
parent702e7425150a2dcee7308af034984d21edb717f5 (diff)
make depend to work with cross-gcc, compensate for msys glitch.
PR: 1753 Submitted by: Alon Bar-Lev
Diffstat (limited to 'util/mklink.pl')
-rwxr-xr-xutil/mklink.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/mklink.pl b/util/mklink.pl
index d9bc98aab8..61db12c68f 100755
--- a/util/mklink.pl
+++ b/util/mklink.pl
@@ -51,6 +51,7 @@ my $to = join('/', @to_path);
my $file;
$symlink_exists=eval {symlink("",""); 1};
+if ($^O eq "msys") { $symlink_exists=0 };
foreach $file (@files) {
my $err = "";
if ($symlink_exists) {