aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xshellgenerator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shellgenerator.py b/shellgenerator.py
index 3ce2080..872b996 100755
--- a/shellgenerator.py
+++ b/shellgenerator.py
@@ -77,7 +77,7 @@ class ShellGenerator():
commands += linker.get_output_flags()
commands.append(outname)
quoted = shell_quote(commands)
- outfile.write('\necho Linking \\"%s\\".\n' % outname)
+ outfile.write('\necho Linking \\"%s\\".\n' % target.get_basename())
outfile.write(' '.join(quoted) + ' || exit\n')
def get_target_dir(self, target):