diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-01-02 00:56:46 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-01-02 00:56:46 +0200 |
commit | 715b83c13499615dac9fdd8cdd7a9b6a9cd003c4 (patch) | |
tree | 19b36556f502256028345bfafce33264029bf13f | |
parent | e01200a4abb68050b3f62402aa329692d2ff8cd5 (diff) | |
download | meson-715b83c13499615dac9fdd8cdd7a9b6a9cd003c4.zip meson-715b83c13499615dac9fdd8cdd7a9b6a9cd003c4.tar.gz meson-715b83c13499615dac9fdd8cdd7a9b6a9cd003c4.tar.bz2 |
Better message.
-rwxr-xr-x | shellgenerator.py | 2 |
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): |