summaryrefslogtreecommitdiffstats
path: root/waftools
diff options
context:
space:
mode:
Diffstat (limited to 'waftools')
-rw-r--r--waftools/waf_customizations.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/waftools/waf_customizations.py b/waftools/waf_customizations.py
index b6798d4235..b3c2878e10 100644
--- a/waftools/waf_customizations.py
+++ b/waftools/waf_customizations.py
@@ -34,6 +34,10 @@ def build(ctx):
class cprogram(cls):
run_str = cls.hcode + '${LAST_LINKFLAGS}'
+ def __str__(self):
+ tgt_str = ' '.join([a.nice_path() for a in self.outputs])
+ return 'linking -> {0}\n'.format(tgt_str)
+
cls = Task.classes['macplist']
class macplist(cls):
def run(self):