aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/build.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-07-02 18:44:36 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-07-02 19:52:53 +0530
commita1d9adba096589122aefc50fb9429ec0ce0432b9 (patch)
tree65711916a354df107ab4022a200855938bacd3a2 /mesonbuild/build.py
parent5714ba253467d84b9cd1003b99e6596b5d86f20a (diff)
downloadmeson-a1d9adba096589122aefc50fb9429ec0ce0432b9.zip
meson-a1d9adba096589122aefc50fb9429ec0ce0432b9.tar.gz
meson-a1d9adba096589122aefc50fb9429ec0ce0432b9.tar.bz2
FeatureNew: Make all checks subproject-specific
We now pass the current subproject to every FeatureNew and FeatureDeprecated call. This requires a bunch of rework to: 1. Ensure that we have access to the subproject in the list of arguments when used as a decorator (see _get_callee_args). 2. Pass the subproject to .use() when it's called manually. 3. We also can't do feature checks for new features in meson_options.txt because that's parsed before we know the meson_version from project()
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r--mesonbuild/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index 2b22521..7d071e0 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -1780,7 +1780,7 @@ class CustomTarget(Target):
'when installing a target')
if isinstance(kwargs['install_dir'], list):
- FeatureNew('multiple install_dir for custom_target', '0.40.0').use()
+ FeatureNew('multiple install_dir for custom_target', '0.40.0').use(self.subproject)
# If an item in this list is False, the output corresponding to
# the list index of that item will not be installed
self.install_dir = typeslistify(kwargs['install_dir'], (str, bool))