summaryrefslogtreecommitdiff
path: root/dev-python/meson-python/files/meson-python-0.7.0-defaults.patch
blob: 8a9b4fc21d5ab99bca50b7a800320bfe97b9e833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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