summaryrefslogtreecommitdiffstats
path: root/crypto/aes/asm/aes-mips.pl
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-01-05 22:56:47 +0100
committerAndy Polyakov <appro@openssl.org>2015-01-07 18:39:39 +0100
commite464403d0bda2f1f74eb68582e4988e591c32433 (patch)
tree298ea5374f814ea1bdba21b9da3db08e37496366 /crypto/aes/asm/aes-mips.pl
parent4138e3882556c762d77eb827b8be98507cde48df (diff)
Fix irix-cc build.
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/aes/asm/aes-mips.pl')
-rw-r--r--crypto/aes/asm/aes-mips.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/aes/asm/aes-mips.pl b/crypto/aes/asm/aes-mips.pl
index 1d8afe9682..a82d8af6f2 100644
--- a/crypto/aes/asm/aes-mips.pl
+++ b/crypto/aes/asm/aes-mips.pl
@@ -79,7 +79,7 @@ $pf = ($flavour =~ /nubi/i) ? $t0 : $t2;
#
######################################################################
-$big_endian=(`echo MIPSEL | $ENV{CC} -E -P -`=~/MIPSEL/)?1:0;
+$big_endian=(`echo MIPSEL | $ENV{CC} -E -`=~/MIPSEL/)?1:0 if ($ENV{CC});
for (@ARGV) { $output=$_ if (/^\w[\w\-]*\.\w+$/); }
open STDOUT,">$output";