Skip to content

Commit 26ccaa4

Browse files
tmuehlbacherjpakkane
authored andcommitted
gnome: Add missing install tag for vapi .deps file
1 parent e771882 commit 26ccaa4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/markdown/Installing.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ time, please help extending the list of well known categories.
170170
* `pkgconfig.generate()`,
171171
* `gnome.generate_gir()` - `.gir` file,
172172
* `gnome.generate_vapi()` - `.vapi` file (*Since 0.64.0*),
173+
* `gnome.generate_vapi()` - `.deps` file (*Since 1.9.1*),
173174
* Files installed into `libdir` and with `.a` or `.pc` extension,
174175
* File installed into `includedir`,
175176
* Generated header files installed with `gnome.compile_resources()`,

mesonbuild/modules/gnome.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2209,7 +2209,7 @@ def _generate_deps(self, state: 'ModuleState', library: str, packages: T.List[st
22092209
with open(fname, 'w', encoding='utf-8') as ofile:
22102210
for package in packages:
22112211
ofile.write(package + '\n')
2212-
return build.Data([mesonlib.File(True, outdir, fname)], install_dir, install_dir, mesonlib.FileMode(), state.subproject)
2212+
return build.Data([mesonlib.File(True, outdir, fname)], install_dir, install_dir, mesonlib.FileMode(), state.subproject, install_tag='devel')
22132213

22142214
def _get_vapi_link_with(self, target: CustomTarget) -> T.List[build.LibTypes]:
22152215
link_with: T.List[build.LibTypes] = []

0 commit comments

Comments
 (0)