From: Jan Alexander Steffens (heftig) Date: Fri, 15 Sep 2017 05:36:15 +0000 (+0200) Subject: meson: Ensure paths written to .pc are absolute X-Git-Tag: AT_SPI2_ATK_2_26_1~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=51728908ad177637127129a0f519498e96f64f7e;p=platform%2Fupstream%2Fat-spi2-atk.git meson: Ensure paths written to .pc are absolute --- diff --git a/meson.build b/meson.build index a357a97..38d3701 100644 --- a/meson.build +++ b/meson.build @@ -53,8 +53,8 @@ import('gnome') pkg_conf = configuration_data() pkg_conf.set('prefix', get_option('prefix')) pkg_conf.set('exec_prefix', get_option('prefix')) -pkg_conf.set('libdir', get_option('libdir')) -pkg_conf.set('includedir', get_option('includedir')) +pkg_conf.set('libdir', join_paths(get_option('prefix'), get_option('libdir'))) +pkg_conf.set('includedir', join_paths(get_option('prefix'), get_option('includedir'))) pkg_conf.set('VERSION', meson.project_version()) configure_file(input: 'atk-bridge-2.0.pc.in',