libwnck3/fix-install-dir-bug-in-mesonbuild.patch

28 lines
744 B
Diff
Raw Normal View History

2020-01-17 15:37:19 +08:00
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']
2019-12-26 19:12:09 +08:00
configure_file(input: pc + '.pc.in',
output: pc + '.pc',
2020-01-17 15:37:19 +08:00
configuration: pc_conf,
2019-12-26 19:12:09 +08:00
- install_dir: install_path)
2020-01-17 15:37:19 +08:00
+ install: not pc.contains('-uninstalled'),
+ install_dir: join_paths(libdir, 'pkgconfig'),
+ )
2019-12-26 19:12:09 +08:00
endforeach
subdir('libwnck')
2020-01-17 15:37:19 +08:00
--
1.8.3.1