From: Dr. Stephen Henson Date: Sun, 4 Dec 2011 15:04:20 +0000 (+0000) Subject: avoid use of symlinks on Windows: it causes problems on some build environments X-Git-Tag: OpenSSL-fips-2_0-rc6~4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=32b56fe4d252ad574743936439e8977953c6f1b0;p=oweals%2Fopenssl.git avoid use of symlinks on Windows: it causes problems on some build environments --- diff --git a/util/mklink.pl b/util/mklink.pl index 61db12c68f..72a562ecaf 100755 --- a/util/mklink.pl +++ b/util/mklink.pl @@ -52,6 +52,7 @@ my $to = join('/', @to_path); my $file; $symlink_exists=eval {symlink("",""); 1}; if ($^O eq "msys") { $symlink_exists=0 }; +if ($^O eq "MSWin32") { $symlink_exists=0 }; foreach $file (@files) { my $err = ""; if ($symlink_exists) { diff --git a/util/point.sh b/util/point.sh index da39899cb1..22daf0e8c5 100755 --- a/util/point.sh +++ b/util/point.sh @@ -1,7 +1,7 @@ #!/bin/sh rm -f "$2" -if test "$OSTYPE" = msdosdjgpp || test "x$PLATFORM" = xmingw ; then +if test "$OSTYPE" = msdosdjgpp || test "x$PLATFORM" = xmingw || test "x$OS" = xWindows_NT ; then cp "$1" "$2" else ln -s "$1" "$2"