From 49667f8fbfb6476c6f24824f971e5c03641046d6 Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Sun, 9 Apr 2023 21:19:22 +0300 Subject: [PATCH] meson: fix protocols path --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 0868589..a378eb2 100644 --- a/meson.build +++ b/meson.build @@ -25,6 +25,7 @@ endforeach foreach protocol_file : protocol_files protocol_install_dir = fs.parent(join_paths( get_option('datadir'), + 'hyprland-protocols', protocol_file, )) install_data( @@ -39,7 +40,7 @@ pkgconfig_configuration = configuration_data() pkgconfig_configuration.set('prefix', get_option('prefix')) pkgconfig_configuration.set('datarootdir', '${prefix}/@0@'.format(get_option('datadir'))) pkgconfig_configuration.set('abs_top_srcdir', hyprland_protocols_srcdir) -pkgconfig_configuration.set('PACKAGE', '') +pkgconfig_configuration.set('PACKAGE', 'hyprland-protocols') pkgconfig_configuration.set('HYPRLAND_PROTOCOLS_VERSION', hyprland_protocols_version) pkg_install_dir = join_paths(get_option('datadir'), 'pkgconfig')