summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2012-03-13 19:19:57 +0000
committerAndy Polyakov <appro@openssl.org>2012-03-13 19:19:57 +0000
commit216a2a5fc656378e522d92b564fc5c6f8af55285 (patch)
tree6a08f8f55f22cb13addeecc7c07684ee79159d3d
parentc2c60449337e10766bc3eb3446e5829ebf86384f (diff)
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 674da3b7e6..544fa93e82 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);