summaryrefslogtreecommitdiffstats
path: root/waftools/syms.py
diff options
context:
space:
mode:
Diffstat (limited to 'waftools/syms.py')
-rw-r--r--waftools/syms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/waftools/syms.py b/waftools/syms.py
index ff53078260..e8a37c1a11 100644
--- a/waftools/syms.py
+++ b/waftools/syms.py
@@ -28,7 +28,7 @@ class compile_sym(Task):
elif self.env.DEST_BINFMT == 'elf':
self.outputs[0].write('{ global:\n' + ';\n'.join(lsyms) + ";\nlocal: *; };\n")
elif self.env.DEST_BINFMT == 'mac-o':
- self.outputs[0].write('\n'.join("_"+sym for sym in lsyms))
+ self.outputs[0].write('\n'.join("_"+sym for sym in lsyms) + '\n')
else:
raise WafError('NotImplemented')