diff options
author | Jack Lloyd <jack@randombit.net> | 2017-12-12 17:28:23 -0500 |
---|---|---|
committer | Jack Lloyd <jack@randombit.net> | 2017-12-12 17:28:23 -0500 |
commit | fb01f3a6595598efd91a72710444475ec53d35e2 (patch) | |
tree | a7a43dad5afac350092f9f31c0eecc349372895b /configure.py | |
parent | df6b9ac6940111ce4aac0a813a06d3dfcbf244a3 (diff) |
Simplify how make flags are set
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.py b/configure.py index b17b268e2..82f6faabf 100755 --- a/configure.py +++ b/configure.py @@ -1594,8 +1594,7 @@ def generate_build_info(build_paths, modules, cc, arch, osinfo): info = { 'src': src, 'obj': obj_file, - 'isa_flags': _isa_specific_flags(src), - 'target_type': 'LIB' if target_type == 'lib' else 'EXE', + 'isa_flags': _isa_specific_flags(src) } if target_type == 'fuzzer': |