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, 0 insertions, 14 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
deleted file mode 100644
index 8a9b4fc21d5a..000000000000
--- a/dev-python/meson-python/files/meson-python-0.7.0-defaults.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-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