Blob Blame History Raw
From 55a9aea72895c03859a7bf34d3854ca1f4d072f3 Mon Sep 17 00:00:00 2001
From: David King <amigadave@amigadave.com>
Date: Mon, 2 May 2022 09:52:05 +0100
Subject: [PATCH] build: Do not set install_rpath

The standard rpath should not be set forcibly.
---
 metadata/meson.build    | 3 +--
 remote/dbus/meson.build | 3 +--
 shell/meson.build       | 3 +--
 3 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/metadata/meson.build b/metadata/meson.build
index fbbe68e90..088660579 100644
--- a/metadata/meson.build
+++ b/metadata/meson.build
@@ -59,8 +59,7 @@ executable('rhythmbox-metadata', metadata_service_sources,
   link_with: rbmetadata_lib,
   dependencies: [librb_dep, rbmetadata_dep],
   install: true,
-  install_dir: get_option('libexecdir'),
-  install_rpath: rpath
+  install_dir: get_option('libexecdir')
 )
 
 # test program
diff --git a/remote/dbus/meson.build b/remote/dbus/meson.build
index 0f053a2b6..fee785dd9 100644
--- a/remote/dbus/meson.build
+++ b/remote/dbus/meson.build
@@ -10,6 +10,5 @@ executable('rhythmbox-client',
     'rb-client.c',
     c_args: client_c_args,
     dependencies: librb_dep,
-    install: true,
-    install_rpath: rpath
+    install: true
 )
diff --git a/shell/meson.build b/shell/meson.build
index 23db7921a..930425ab0 100644
--- a/shell/meson.build
+++ b/shell/meson.build
@@ -149,6 +149,5 @@ endif
 executable('rhythmbox', 'main.c',
   dependencies: rhythmbox_dependencies,
   include_directories: [ pluginsinc ],
-  install: true,
-  install_rpath: rpath
+  install: true
 )
-- 
2.35.1