diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-03-21 19:30:13 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-03-22 23:07:53 +0200 |
commit | 9e5c881b06bfb79ee9ee40cdd8dca3a78f268a40 (patch) | |
tree | 010ef213ef675f1f136b0731420c860905a4934d /mesonbuild/mlog.py | |
parent | 1cf7799df26232dda45fd94a2c5e2b1ad3851c3d (diff) | |
download | meson-9e5c881b06bfb79ee9ee40cdd8dca3a78f268a40.zip meson-9e5c881b06bfb79ee9ee40cdd8dca3a78f268a40.tar.gz meson-9e5c881b06bfb79ee9ee40cdd8dca3a78f268a40.tar.bz2 |
Add property to disable compiler sanity checks during cross compilation.
Diffstat (limited to 'mesonbuild/mlog.py')
-rw-r--r-- | mesonbuild/mlog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mlog.py b/mesonbuild/mlog.py index 7d9dc16..a5fb320 100644 --- a/mesonbuild/mlog.py +++ b/mesonbuild/mlog.py @@ -213,7 +213,7 @@ def log_once(*args: T.Union[str, AnsiDecorator], is_error: bool = False, **kwargs: T.Any) -> None: """Log variant that only prints a given message one time per meson invocation. - This considers nasi decorated values by the values they wrap without + This considers ansi decorated values by the values they wrap without regard for the AnsiDecorator itself. """ t = tuple(a.text if isinstance(a, AnsiDecorator) else a for a in args) |