summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2010-07-09 16:19:41 +0000
committerAndy Polyakov <appro@openssl.org>2010-07-09 16:19:41 +0000
commit27650016102187647c9ea04b8fed41188c3cc87e (patch)
tree73c6ba47f89cb0d5f6418471c3ed8b5e4c8a8a6b /Configure
parent653215a12727c4181ce1e2993ab717351468892a (diff)
Configure: fix aes_ctr.o regexp.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
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 {