44 lines
1.2 KiB
Diff
44 lines
1.2 KiB
Diff
From ab8006d8c2688593ff094829f0b2092c05356c35 Mon Sep 17 00:00:00 2001
|
|
From: rpm-build <rpm-build>
|
|
Date: Wed, 12 May 2021 17:57:55 +0800
|
|
Subject: [PATCH] fix:Specify the library file search path
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
- 指定库文件搜索路径
|
|
---
|
|
src/meson.build | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/src/meson.build b/src/meson.build
|
|
index 08f9e3c..f3a8096 100644
|
|
--- a/src/meson.build
|
|
+++ b/src/meson.build
|
|
@@ -31,6 +31,7 @@ executable('kiran-calendar-test',
|
|
'common.c',
|
|
install : false,
|
|
c_args: '-g',
|
|
+ link_args : '-Wl,-rpath=/usr/lib64',
|
|
dependencies : [glib_dep, gobject_dep, gtk_dep, lundate_dep]
|
|
)
|
|
|
|
@@ -42,6 +43,7 @@ executable('kiran-clock-test',
|
|
'common.c',
|
|
install : false,
|
|
c_args: '-g',
|
|
+ link_args : '-Wl,-rpath=/usr/lib64',
|
|
dependencies : [glib_dep, gobject_dep, gtk_dep, lundate_dep]
|
|
)
|
|
|
|
@@ -53,5 +55,6 @@ executable('kiran-clock-applet',
|
|
'common.c',
|
|
install : true,
|
|
install_dir: libexecdir,
|
|
+ link_args : '-Wl,-rpath=/usr/lib64',
|
|
dependencies : [glib_dep, gobject_dep, gtk_dep, lundate_dep, libmatepanelapplet_dep]
|
|
)
|
|
--
|
|
2.18.1
|
|
|