From e1933ec5a7604f0fb23c4114c25090874312b03e Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 13 Feb 2026 20:09:37 +0100 Subject: [PATCH] meson.build: fix .pc and .m4 install on xorg-sdk-only build Signed-off-by: Enrico Weigelt, metux IT consult --- hw/xfree86/meson.build | 1 - meson.build | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/hw/xfree86/meson.build b/hw/xfree86/meson.build index 3f3e6d3955..6cda392927 100644 --- a/hw/xfree86/meson.build +++ b/hw/xfree86/meson.build @@ -1,4 +1,3 @@ -module_abi_tag = 'xlibre-25' module_abi_dir = join_paths(module_dir, module_abi_tag) xorg_inc = include_directories( diff --git a/meson.build b/meson.build index f2bcbf083a..cc7007e280 100644 --- a/meson.build +++ b/meson.build @@ -765,6 +765,8 @@ if build_docs or build_docs_devel ] endif +module_abi_tag = 'xlibre-25' + # Include must come first, as it sets up dix-config.h subdir('include') @@ -839,7 +841,7 @@ if (get_option('tests') and host_machine.system() != 'windows' and build_xserver subdir('test') endif -if build_xorg +if build_xorg_sdk sdkconfig = configuration_data() awk = find_program('awk')