aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorJack Lloyd <jack@randombit.net>2017-12-12 17:28:23 -0500
committerJack Lloyd <jack@randombit.net>2017-12-12 17:28:23 -0500
commitfb01f3a6595598efd91a72710444475ec53d35e2 (patch)
treea7a43dad5afac350092f9f31c0eecc349372895b /configure.py
parentdf6b9ac6940111ce4aac0a813a06d3dfcbf244a3 (diff)
Simplify how make flags are set
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py3
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':