diff options
| author | Daniele Nicolodi <daniele@grinta.net> | 2023-06-25 19:02:38 +0200 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2023-06-26 23:06:29 -0400 |
| commit | c900e6b0b321ceed4f269965741201f835d00a89 (patch) | |
| tree | b8556dcb9de60b977ab99ecfc2ad940aa3467e2a /mesonbuild/mintro.py | |
| parent | a71846d7494f3035677bee5f38b3fc94fb18938b (diff) | |
| download | meson-c900e6b0b321ceed4f269965741201f835d00a89.tar.gz | |
mintro: record subproject in install_plan
Diffstat (limited to 'mesonbuild/mintro.py')
| -rw-r--r-- | mesonbuild/mintro.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/mintro.py b/mesonbuild/mintro.py index c921ce63d..ab303b3f5 100644 --- a/mesonbuild/mintro.py +++ b/mesonbuild/mintro.py @@ -137,6 +137,7 @@ def list_install_plan(installdata: backends.InstallData) -> T.Dict[str, T.Dict[s os.path.join(installdata.build_dir, target.fname): { 'destination': target.out_name, 'tag': target.tag or None, + 'subproject': target.subproject or None, } for target in installdata.targets }, @@ -157,6 +158,7 @@ def list_install_plan(installdata: backends.InstallData) -> T.Dict[str, T.Dict[s entry = { 'destination': install_path_name, 'tag': data.tag or None, + 'subproject': data.subproject or None, } if key == 'install_subdirs': |
