diff options
author | lloyd <[email protected]> | 2013-12-15 18:42:28 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-12-15 18:42:28 +0000 |
commit | 1da5ef3052410d3ddfa31a305aac5ef16ddce4e7 (patch) | |
tree | 19897f620b359e8cc4f84443992766a69b1a85ce /configure.py | |
parent | 03d02309753b1a6c2e512bff27dca190e8f64e5c (diff) |
Clean up makefile output
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.py b/configure.py index 607471e27..92edee9bd 100755 --- a/configure.py +++ b/configure.py @@ -830,7 +830,7 @@ class CompilerInfo(object): if len(abi_link) == 0: return '' - return ' ' + ' '.join(sorted(list(abi_link))) + return ' '.join(sorted(list(abi_link))) """ @@ -1056,7 +1056,7 @@ def create_template_vars(build_config, options, modules, cc, arch, osinfo): if mod.need_isa not in cc.isa_flags: raise Exception('Compiler does not support %s, required by %s' % ( mod.need_isa, src)) - return cc.isa_flags[mod.need_isa] + return ' ' + cc.isa_flags[mod.need_isa] return '' """ @@ -1064,7 +1064,7 @@ def create_template_vars(build_config, options, modules, cc, arch, osinfo): """ def build_commands(sources, obj_dir, flags): for (obj_file,src) in zip(objectfile_list(sources, obj_dir), sources): - yield '%s: %s\n\t$(CXX) %s $(%s_FLAGS) %s%s %s$? %s$@\n' % ( + yield '%s: %s\n\t$(CXX)%s $(%s_FLAGS) %s%s %s$? %s$@\n' % ( obj_file, src, isa_specific_flags(cc, src), flags, |