aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-01-02 00:56:46 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-01-02 00:56:46 +0200
commit715b83c13499615dac9fdd8cdd7a9b6a9cd003c4 (patch)
tree19b36556f502256028345bfafce33264029bf13f
parente01200a4abb68050b3f62402aa329692d2ff8cd5 (diff)
downloadmeson-715b83c13499615dac9fdd8cdd7a9b6a9cd003c4.zip
meson-715b83c13499615dac9fdd8cdd7a9b6a9cd003c4.tar.gz
meson-715b83c13499615dac9fdd8cdd7a9b6a9cd003c4.tar.bz2
Better message.
-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):