gentoo/dev-python/meson-python/files/meson-python-0.11.0-defaults.patch
Arthur Zamarin 4c88076048
dev-python/meson-python: add 0.11.0
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2022-11-21 22:07:56 +02:00

15 lines
608 B
Diff

See https://github.com/mesonbuild/meson-python/blob/main/mesonpy/__init__.py#L452.
(Also: https://github.com/mesonbuild/meson-python/issues/54)
--- a/mesonpy/__init__.py
+++ b/mesonpy/__init__.py
@@ -734,7 +734,7 @@ class Project():
@functools.lru_cache(maxsize=None)
def build(self) -> None:
"""Trigger the Meson build."""
- self._meson('compile', *self._meson_args['compile'],)
+ self._meson('compile', '--verbose', *self._meson_args['compile'],)
self._meson('install', '--destdir', os.fspath(self._install_dir), *self._meson_args['install'],)
@classmethod