This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: lib/libdvbv5/meson.build: use `includedir` also for `libdvb-version.h` Author: Yarny <[email protected]> Date: Fri Jun 20 20:24:24 2025 +0200 Header files are copied into the `includedir` by Meson. However, `libdvb-version.h` is not treated as normal include file, but copied with `configure_file`. This means we have to explicitly declare the target directory. The commit at hand fixes the target directory to point to Meson's `includedir`. That is necessary so the file ends up where all header files go, even when the build outputs are split into separate packages. Signed-off-by: Yarny <[email protected]> Signed-off-by: Hans Verkuil <[email protected]> lib/libdvbv5/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=34aa1df2b23fb85b030cddf64c427137ddf04e93 diff --git a/lib/libdvbv5/meson.build b/lib/libdvbv5/meson.build index 8f5929fcad40..4530cc64ffdb 100644 --- a/lib/libdvbv5/meson.build +++ b/lib/libdvbv5/meson.build @@ -68,7 +68,7 @@ configure_file( input : '../include/libdvbv5/libdvb-version.h.in', configuration : conf, install: true, - install_dir: 'include/libdvbv5', + install_dir: get_option('includedir') / 'libdvbv5', ) libdvbv5_api = files(
