diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-11-07 11:46:56 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-11-08 23:21:49 +0200 |
commit | d55aaa56f439d72926d57a96205913955e23a57a (patch) | |
tree | 4ae567cc039ca629e78385c761946df1742f1a57 /mesonbuild/interpreter.py | |
parent | facf87edd8df47f1a9bf30a0137e23b8927cd12c (diff) | |
download | meson-d55aaa56f439d72926d57a96205913955e23a57a.zip meson-d55aaa56f439d72926d57a96205913955e23a57a.tar.gz meson-d55aaa56f439d72926d57a96205913955e23a57a.tar.bz2 |
"built-in" is the standard spellling
Diffstat (limited to 'mesonbuild/interpreter.py')
-rw-r--r-- | mesonbuild/interpreter.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py index 38e12ea..f592934 100644 --- a/mesonbuild/interpreter.py +++ b/mesonbuild/interpreter.py @@ -3958,17 +3958,17 @@ different subdirectory. optargs = ('-O0', '-O2', '-O3', '-Os', '/O1', '/O2', '/Os') for arg in args: if arg in warnargs: - mlog.warning("Consider using the builtin warning_level option instead of adding warning flags by hand.") + mlog.warning("Consider using the built-in warning_level option instead of adding warning flags by hand.") elif arg in optargs: - mlog.warning('Consider using the builtin optimization level rather than adding flags by hand.') + mlog.warning('Consider using the built-in optimization level rather than adding flags by hand.') elif arg == '-g': - mlog.warning('Consider using the builtin debug option rather than adding flags by hand.') + mlog.warning('Consider using the built-in debug option rather than adding flags by hand.') elif arg == '-pipe': mlog.warning("You don't need to add -pipe, Meson will use it automatically when it is available.") elif arg.startswith('-fsanitize'): - mlog.warning('Consider using the builtin option for sanitizers rather than adding flags by hand.') + mlog.warning('Consider using the built-in option for sanitizers rather than adding flags by hand.') elif arg.startswith('-std=') or arg.startswith('/std:'): - mlog.warning('Consider using the builtin option for language standard version rather than adding flags by hand.') + mlog.warning('Consider using the built-in option for language standard version rather than adding flags by hand.') def add_global_arguments(self, node, argsdict, args, kwargs): if self.is_subproject(): |