aboutsummaryrefslogtreecommitdiff
path: root/ninjabackend.py
diff options
context:
space:
mode:
Diffstat (limited to 'ninjabackend.py')
-rw-r--r--ninjabackend.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/ninjabackend.py b/ninjabackend.py
index 33ed6d9..f3e8587 100644
--- a/ninjabackend.py
+++ b/ninjabackend.py
@@ -777,9 +777,8 @@ class NinjaBackend(backends.Backend):
if is_cross:
crstr = '_CROSS'
rule = 'rule %s%s_LINKER\n' % (langname, crstr)
- command = ' command = %s %s $ARGS %s $in $LINK_ARGS $aliasing\n' % \
- (execute_wrapper,
- ' '.join(compiler.get_linker_exelist()),\
+ command = ' command = %s $ARGS %s $in $LINK_ARGS $aliasing\n' % \
+ (' '.join(compiler.get_linker_exelist()),\
' '.join(compiler.get_linker_output_args('$out')))
description = ' description = Linking target $out'
outfile.write(rule)