summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2004-12-20 13:44:34 +0000
committerAndy Polyakov <appro@openssl.org>2004-12-20 13:44:34 +0000
commit76ef6ac956490b4d9f78445599ce52510021858a (patch)
treee3dc2caa83e0d717ed19fdae43cfedc3e34acb84 /util
parenta842df6659e1a9dd98bdab61cf2fd4682dfb70ad (diff)
Refine PowerPC platform support.
Diffstat (limited to 'util')
-rwxr-xr-xutil/mklink.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/mklink.pl b/util/mklink.pl
index 9386da7aa4..c8653cecc3 100755
--- a/util/mklink.pl
+++ b/util/mklink.pl
@@ -52,6 +52,7 @@ $symlink_exists=eval {symlink("",""); 1};
foreach $file (@files) {
my $err = "";
if ($symlink_exists) {
+ unlink "$from/$file";
symlink("$to/$file", "$from/$file") or $err = " [$!]";
} else {
unlink "$from/$file";