aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/cs.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-06-27 04:12:48 -0400
committerGitHub <noreply@github.com>2017-06-27 04:12:48 -0400
commite630d899daf34cea5dcb74182861824904fbab10 (patch)
treece6529cf8b908dadcab76f5f3f6fe98c70a97818 /mesonbuild/compilers/cs.py
parent80ebc916f78ad736494ffee49f100134954acc2c (diff)
parentbbddf51a5425799564e7c8ede4456feb59537357 (diff)
downloadmeson-e630d899daf34cea5dcb74182861824904fbab10.zip
meson-e630d899daf34cea5dcb74182861824904fbab10.tar.gz
meson-e630d899daf34cea5dcb74182861824904fbab10.tar.bz2
Merge pull request #2004 from valum-framework/add-display-language
More usages of 'get_display_language' and a fix for C#
Diffstat (limited to 'mesonbuild/compilers/cs.py')
-rw-r--r--mesonbuild/compilers/cs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/cs.py b/mesonbuild/compilers/cs.py
index 4f6fec1..e6c5b9e 100644
--- a/mesonbuild/compilers/cs.py
+++ b/mesonbuild/compilers/cs.py
@@ -26,7 +26,7 @@ class MonoCompiler(Compiler):
self.monorunner = 'mono'
def get_display_language(self):
- return 'C#'
+ return 'C sharp'
def get_output_args(self, fname):
return ['-out:' + fname]