From 6aa298e1dafbbbd3f6018035b6f7fcd13f79f834 Mon Sep 17 00:00:00 2001 From: Olaf Hering Date: Tue, 10 Feb 2026 08:20:21 +0000 Subject: [PATCH] meson: install headers into pkg specific directory Reuse the location which automake uses. Signed-off-by: Olaf Hering --- include/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/meson.build b/include/meson.build index a28298687a..aa8d5a2d92 100644 --- a/include/meson.build +++ b/include/meson.build @@ -14,7 +14,7 @@ install_headers( 'vlc/libvlc_renderer_discoverer.h', 'vlc/libvlc_version.h', 'vlc/libvlc_video.h', - subdir: 'vlc') + subdir: vlc_pkg_suffix) # Install VLC plugin headers install_headers( @@ -120,4 +120,4 @@ install_headers( 'vlc_window.h', 'vlc_xlib.h', 'vlc_xml.h', - subdir: 'vlc/plugins') + subdir: vlc_pkg_suffix / 'plugins')