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
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-06-26 15:58:04 +0400
committerRichard Levitte <levitte@openssl.org>2003-06-26 15:58:04 +0400
commit4e6480faf8ee95d5783336b84a094cabe8584a44 (patch)
treee7ed62dd4c41bd14335fc9f61303a7c01b0820f5 /util
parent00dc2d75511517a43221e7da55d8e594fe925262 (diff)
Only remove old files if they exist. [Maing32].
Notified by Michael Gerdau <mgd@technosis.de>
Diffstat (limited to 'util')
-rw-r--r--util/pl/Mingw32.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/pl/Mingw32.pl b/util/pl/Mingw32.pl
index 043a3a53ee..4bee638c4a 100644
--- a/util/pl/Mingw32.pl
+++ b/util/pl/Mingw32.pl
@@ -85,7 +85,7 @@ sub do_lib_rule
($Name=$name) =~ tr/a-z/A-Z/;
$ret.="$target: \$(${Name}OBJ)\n";
- $ret.="\t\$(RM) $target\n";
+ $ret.="\tif exist $target \$(RM) $target\n";
$ret.="\t\$(MKLIB) $target \$(${Name}OBJ)\n";
$ret.="\t\$(RANLIB) $target\n\n";
}