diff options
author | Jack Lloyd <[email protected]> | 2018-02-18 13:36:20 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-02-18 13:36:47 -0500 |
commit | 292c32bd73b3c114621ac2e4a668f6aca02c0cea (patch) | |
tree | c40ed17fe7de2aa0d260fa9be6fa468b6f5deb21 /configure.py | |
parent | 10f3cd2d72349488075c0c6246823c0c3881e067 (diff) |
Wrap line for lint [ci skip]
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 5ccf1e97a..c6b9fde64 100755 --- a/configure.py +++ b/configure.py @@ -329,7 +329,12 @@ def process_command_line(args): # pylint: disable=too-many-locals target_group.add_option('--without-os-features', action='append', metavar='FEAT', help='specify OS features to disable') - for isa_extn_name in ['SSE2', 'SSSE3', 'SSE4.1', 'SSE4.2', 'AVX2', 'AES-NI', 'SHA', 'AltiVec', 'NEON', 'ARMv8Crypto']: + isa_extensions = [ + 'SSE2', 'SSSE3', 'SSE4.1', 'SSE4.2', 'AVX2', + 'AES-NI', 'SHA', + 'AltiVec', 'NEON', 'ARMv8Crypto'] + + for isa_extn_name in isa_extensions: isa_extn = isa_extn_name.lower() target_group.add_option('--disable-%s' % (isa_extn), |