28 lines
744 B
Diff
28 lines
744 B
Diff
From 1a3cfa6af724341476475935f6c992f5a68f62e2 Mon Sep 17 00:00:00 2001
|
|
From: songnannan <songnannan2@huawei.com>
|
|
Date: Fri, 17 Jan 2020 15:15:27 +0800
|
|
Subject: [PATCH] fix bug about install dir in mesonbuild
|
|
|
|
---
|
|
meson.build | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/meson.build b/meson.build
|
|
index 9960a78..d2263eb 100644
|
|
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -87,7 +87,9 @@ foreach pc: [PACKAGE_NAME, PACKAGE_NAME + '-uninstalled']
|
|
configure_file(input: pc + '.pc.in',
|
|
output: pc + '.pc',
|
|
configuration: pc_conf,
|
|
- install_dir: install_path)
|
|
+ install: not pc.contains('-uninstalled'),
|
|
+ install_dir: join_paths(libdir, 'pkgconfig'),
|
|
+ )
|
|
endforeach
|
|
|
|
subdir('libwnck')
|
|
--
|
|
1.8.3.1
|
|
|