summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-12-10 13:29:23 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-12-10 13:29:23 +0000
commit0e480d55537be586c806c8d0175c16a3262daf5c (patch)
treed2c42ae86f3eaaf81eda4b2bc3810c244e314937
parent7c0d30038f19ce927ac121bd2114e41b8a17ed8e (diff)
use different names for asm temp files to avoid problems on some platforms
-rw-r--r--util/fipsas.pl19
1 files changed, 11 insertions, 8 deletions
diff --git a/util/fipsas.pl b/util/fipsas.pl
index fc2a759308..1694c59a41 100644
--- a/util/fipsas.pl
+++ b/util/fipsas.pl
@@ -8,6 +8,9 @@ my @ARGS = @ARGV;
my $top = shift @ARGS;
my $target = shift @ARGS;
+my $tmptarg = $target;
+
+$tmptarg =~ s/\.[^\\\/\.]+$/.tmp/;
my $runasm = 1;
@@ -48,11 +51,15 @@ while (<IN>)
my ($from, $to);
+#delete any temp file lying around
+
+unlink $tmptarg;
+
#rename target temporarily
-rename($target, "tmptarg.s") || die "Can't rename $target";
+rename($target, $tmptarg) || die "Can't rename $target";
#edit target
-open(IN,"tmptarg.s") || die "Can't open temporary file";
+open(IN,$tmptarg) || die "Can't open temporary file";
open(OUT, ">$target") || die "Can't open output file $target";
while (<IN>)
@@ -75,16 +82,12 @@ if ($runasm)
# restore target
unlink $target;
- rename "tmptarg.s", $target;
+ rename $tmptarg, $target;
die "Error executing assembler!" if $rv != 0;
}
else
{
# Don't care about target
- unlink "tmptarg.s";
+ unlink $tmptarg;
}
-
-
-
-