diff options
author | lloyd <[email protected]> | 2015-06-03 11:17:38 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-06-03 11:17:38 +0000 |
commit | 9f416e8c52a8f6f1f72aaa52db960acddf59ddaf (patch) | |
tree | dd7bd8060e047ac3ffc64b7f3fa224cc4660b904 /configure.py | |
parent | bc61db15678d01c9ff0aaabdc5fbe767232badca (diff) |
Fix --disable-aes-ni flag which did not disable AES-NI. Reported on
the mailing list.
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 9abeade78..5c4a602ab 100755 --- a/configure.py +++ b/configure.py @@ -275,7 +275,7 @@ def process_command_line(args): target_group.add_option('--disable-%s' % (isa_extn), help='disable %s intrinsics' % (isa_extn_name), action='append_const', - const=isa_extn, + const=isa_extn.replace('-', ''), dest='disable_intrinsics') build_group = optparse.OptionGroup(parser, 'Build options') |