From: Andy Polyakov <appro@openssl.org> Date: Fri, 9 Jul 2010 16:19:41 +0000 (+0000) Subject: Configure: fix aes_ctr.o regexp. X-Git-Tag: OpenSSL-fips-2_0-rc1~1052 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=27650016102187647c9ea04b8fed41188c3cc87e;p=oweals%2Fopenssl.git Configure: fix aes_ctr.o regexp. --- diff --git a/Configure b/Configure index f7e7618c65..698213b018 100755 --- a/Configure +++ b/Configure @@ -1402,7 +1402,7 @@ if ($aes_obj =~ /\.o$/) $cflags.=" -DAES_ASM"; # aes_ctr.o is not a real file, only indication that assembler # module implements AES_ctr32_encrypt... - $cflags.=" -DAES_CTR_ASM" if ($aes_obj =~ s/\s*aes_ctr.o//); + $cflags.=" -DAES_CTR_ASM" if ($aes_obj =~ s/\s*aes_ctr\.o//); $aes_obj =~ s/\s*aesni\-x86\.o// if ($no_sse2); } else {