summaryrefslogtreecommitdiffstats
path: root/waftools/waf_customizations.py
diff options
context:
space:
mode:
Diffstat (limited to 'waftools/waf_customizations.py')
-rw-r--r--waftools/waf_customizations.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/waftools/waf_customizations.py b/waftools/waf_customizations.py
index fb5f130276..f264f9cb86 100644
--- a/waftools/waf_customizations.py
+++ b/waftools/waf_customizations.py
@@ -34,12 +34,12 @@ def build(ctx):
cls = Task.classes['cprogram']
class cprogram(cls):
try:
- run_str = cls.orig_run_str + '${LAST_LINKFLAGS}'
+ run_str = cls.orig_run_str + ' ${LAST_LINKFLAGS}'
except AttributeError:
try:
- run_str = cls.hcode + '${LAST_LINKFLAGS}'
+ run_str = cls.hcode + ' ${LAST_LINKFLAGS}'
except TypeError:
- run_str = cls.hcode.decode('iso8859-1') + '${LAST_LINKFLAGS}'
+ run_str = cls.hcode.decode('iso8859-1') + ' ${LAST_LINKFLAGS}'
cls = Task.classes['macplist']
class macplist(cls):