aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/backend/ninjabackend.py
diff options
context:
space:
mode:
authorGuillaume Poirier-Morency <guillaumepoiriermorency@gmail.com>2017-05-02 10:44:35 -0400
committerGuillaume Poirier-Morency <guillaumepoiriermorency@gmail.com>2017-05-02 10:44:35 -0400
commitce2e36fd6e6c6fa966ae5d1da72f0f3ef588dab4 (patch)
tree7c58117ff57a36e85239c1cb1a19ac3956659547 /mesonbuild/backend/ninjabackend.py
parentf16232856e40e145a773a364c3e9a4013a76f719 (diff)
downloadmeson-ce2e36fd6e6c6fa966ae5d1da72f0f3ef588dab4.zip
meson-ce2e36fd6e6c6fa966ae5d1da72f0f3ef588dab4.tar.gz
meson-ce2e36fd6e6c6fa966ae5d1da72f0f3ef588dab4.tar.bz2
ninjabackend: Fix typography for JAR and C# in descriptions
Diffstat (limited to 'mesonbuild/backend/ninjabackend.py')
-rw-r--r--mesonbuild/backend/ninjabackend.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py
index abc0445..d14ad6a 100644
--- a/mesonbuild/backend/ninjabackend.py
+++ b/mesonbuild/backend/ninjabackend.py
@@ -966,7 +966,7 @@ int dummy;
def generate_java_link(self, outfile):
rule = 'rule java_LINKER\n'
command = ' command = jar $ARGS\n'
- description = ' description = Creating jar $out.\n'
+ description = ' description = Creating JAR $out.\n'
outfile.write(rule)
outfile.write(command)
outfile.write(description)
@@ -1429,7 +1429,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 cs target $out.\n'
+ description = ' description = Compiling C# target $out.\n'
outfile.write(rule)
outfile.write(command)
outfile.write(description)