summaryrefslogtreecommitdiff
path: root/dev-python/meson-python/files/meson-python-0.7.0-defaults.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/meson-python/files/meson-python-0.7.0-defaults.patch')
-rw-r--r--dev-python/meson-python/files/meson-python-0.7.0-defaults.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/dev-python/meson-python/files/meson-python-0.7.0-defaults.patch b/dev-python/meson-python/files/meson-python-0.7.0-defaults.patch
new file mode 100644
index 000000000000..8a9b4fc21d5a
--- /dev/null
+++ b/dev-python/meson-python/files/meson-python-0.7.0-defaults.patch
@@ -0,0 +1,14 @@
+See https://github.com/FFY00/meson-python/blob/main/mesonpy/__init__.py#L452.
+
+(Also: https://github.com/FFY00/meson-python/issues/54)
+--- a/mesonpy/__init__.py
++++ b/mesonpy/__init__.py
+@@ -532,7 +532,7 @@ class Project():
+ @functools.lru_cache(maxsize=None)
+ def build(self) -> None:
+ """Trigger the Meson build."""
+- self._meson('compile')
++ self._meson('compile', '--verbose')
+ self._meson('install', '--destdir', os.fspath(self._install_dir))
+
+ @classmethod