summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorappro <appro>2012-03-13 19:19:08 +0000
committerappro <appro>2012-03-13 19:19:08 +0000
commit268367bc0e66289c16598910c4cf136cfea12634 (patch)
tree3709f8fe9c82ac7ed675b3009f6d92f96efa5fea
parent19c2e3148877af02bfa7efb5d7e7536eab778111 (diff)
downloadopenssl-268367bc0e66289c16598910c4cf136cfea12634.tar.gz
x86_64-xlate.pl: remove old kludge.
PR: 2435,2440
-rwxr-xr-xcrypto/perlasm/x86_64-xlate.pl8
1 files changed, 2 insertions, 6 deletions
diff --git a/crypto/perlasm/x86_64-xlate.pl b/crypto/perlasm/x86_64-xlate.pl
index 1492e1c2e..56d9b64b6 100755
--- a/crypto/perlasm/x86_64-xlate.pl
+++ b/crypto/perlasm/x86_64-xlate.pl
@@ -62,12 +62,8 @@ my $flavour = shift;
my $output = shift;
if ($flavour =~ /\./) { $output = $flavour; undef $flavour; }
-{ my ($stddev,$stdino,@junk)=stat(STDOUT);
- my ($outdev,$outino,@junk)=stat($output);
-
- open STDOUT,">$output" || die "can't open $output: $!"
- if ($stddev!=$outdev || $stdino!=$outino);
-}
+open STDOUT,">$output" || die "can't open $output: $!"
+ if (defined($output));
my $gas=1; $gas=0 if ($output =~ /\.asm$/);
my $elf=1; $elf=0 if (!$gas);