summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-06-26 11:58:02 +0000
committerRichard Levitte <levitte@openssl.org>2003-06-26 11:58:02 +0000
commitaa5ae4841e74c0fb94c0b9513cd93e5f24d12d4b (patch)
tree17259d5dc76eb95c2cc2f2e0480b9c2e96be50f6 /util
parenteb3d68c454d1481009f44c6671f658edf115edfa (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 d0472df278..b76b7afd27 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";
}