build: Drop redundant install_tag arguments for headers

All supported versions of Meson will autodetect the tag.
This commit is contained in:
Benjamin Gilbert
2024-09-05 04:20:37 -07:00
parent cddb084a3f
commit b7203e9406
4 changed files with 0 additions and 12 deletions

View File

@@ -758,8 +758,6 @@ gio_visibility_h = custom_target(
command: [gen_visibility_macros, meson.project_version(), 'visibility-macros', 'GIO', '@OUTPUT@'],
install: true,
install_dir: gio_includedir,
# FIXME: Not needed with Meson >= 0.64.0
install_tag: 'devel',
)
gio_sources += gio_visibility_h
@@ -776,8 +774,6 @@ gioenumtypes_h = custom_target('gioenumtypes_h',
input : gio_headers,
install : true,
install_dir : gio_includedir,
# FIXME: Not needed with Meson >= 0.64.0
install_tag: 'devel',
command : [python, glib_mkenums,
'--template', files('gioenumtypes.h.template'),
'@INPUT@', gnetworking_h])