diff options
author | Guillaume Poirier-Morency <guillaumepoiriermorency@gmail.com> | 2017-05-02 18:39:57 -0400 |
---|---|---|
committer | Guillaume Poirier-Morency <guillaumepoiriermorency@gmail.com> | 2017-05-02 18:40:00 -0400 |
commit | 820fc8ee2455ab8daf55237d08f6bc2530cf290a (patch) | |
tree | d1329da025a2286ab3c631ac61d78d3dde9b1102 | |
parent | 253201d9bf1adb0e2cd55fb29dbbd22c3328ef32 (diff) | |
download | meson-820fc8ee2455ab8daf55237d08f6bc2530cf290a.zip meson-820fc8ee2455ab8daf55237d08f6bc2530cf290a.tar.gz meson-820fc8ee2455ab8daf55237d08f6bc2530cf290a.tar.bz2 |
ninjabackend: Fix implicit comment for 'C#' rule description
-rw-r--r-- | mesonbuild/backend/ninjabackend.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py index 19adb2a..90d8e60 100644 --- a/mesonbuild/backend/ninjabackend.py +++ b/mesonbuild/backend/ninjabackend.py @@ -1430,7 +1430,7 @@ int dummy; rule = 'rule %s_COMPILER\n' % compiler.get_language() invoc = ' '.join([ninja_quote(i) for i in compiler.get_exelist()]) command = ' command = %s $ARGS $in\n' % invoc - description = ' description = Compiling C# target $out.\n' + description = ' description = Compiling C Sharp target $out.\n' outfile.write(rule) outfile.write(command) outfile.write(description) |