From b9754729e1800becb2fb0b799efe2b1f18067d50 Mon Sep 17 00:00:00 2001 From: Rouven Czerwinski Date: Wed, 15 May 2024 10:27:38 +0200 Subject: [PATCH] xwayland: install pkgconfig to sharedir Remove the previous change which ensured that the xwayland pkgconfig file was installed into $libdir. This is a breaking change for build systems searching for the xwayland pkg-config file. The sharedir location fits xwayland better since the pkg-config file does not contain linking information, it only contains the data on how to locate the xwayland binary and which features are enabled. Signed-off-by: Rouven Czerwinski Reviewed-by: Olivier Fourdan Part-of: --- hw/xwayland/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/hw/xwayland/meson.build b/hw/xwayland/meson.build index 37bda5ade..460c57300 100644 --- a/hw/xwayland/meson.build +++ b/hw/xwayland/meson.build @@ -183,7 +183,6 @@ pkgconfig.generate( name: 'Xwayland', description: 'X Server for Wayland', dataonly: true, - install_dir: join_paths(get_option('libdir'), 'pkgconfig'), variables: [ 'exec_prefix=${prefix}', 'xwayland=' + xwayland_path / xwayland_server.name(),