summaryrefslogtreecommitdiffstats
path: root/crypto/aes/asm
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:41:17 +0100
commit2d63d0c84acfdf14d4870a7d04d1b27b000e579c (patch)
tree659a15ce3c97d5cd59cbaec325b4c193bb822be1 /crypto/aes/asm
parentcfb5d6c10a00a1874dbc5eeff762b7e502f711e6 (diff)
Fix irix-cc build.
Reviewed-by: Matt Caswell <matt@openssl.org> (cherry picked from commit e464403d0bda2f1f74eb68582e4988e591c32433)
Diffstat (limited to 'crypto/aes/asm')
-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 1fdc6bf85c..4de3ee26bb 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";