From 0509a9ce2e11d76ca37e57e56485cdd6bcb2ed7f Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Aug 02 2022 13:34:10 +0000 Subject: fix --- diff --git a/cinnamon-settings-daemon.spec b/cinnamon-settings-daemon.spec index f6c0d8e..0fb34b3 100644 --- a/cinnamon-settings-daemon.spec +++ b/cinnamon-settings-daemon.spec @@ -8,6 +8,7 @@ Summary: The daemon sharing settings from CINNAMON to GTK+/KDE applicatio License: GPLv2+ and LGPLv2+ URL: https://github.com/linuxmint/%{name} Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz +Patch0: fix_rpath.patch ExcludeArch: %{ix86} @@ -113,9 +114,9 @@ rm -rf %{buildroot}%{_libdir}/cinnamon-settings-daemon/ %{_libexecdir}/csd-screensaver-proxy %{_libexecdir}/csd-xsettings %ifnarch s390 s390x %{?rhel:ppc ppc64} -%{_libexecdir}/csd-list-wacom +%{_libexecdir}/csd-wacom-oled-helper +%{_libexecdir}/csd-wacom-led-helper %{_libexecdir}/csd-wacom -%{_libexecdir}/csd-wacom-osd %endif %{_datadir}/applications/csd-automount.desktop %{_datadir}/cinnamon-settings-daemon/ diff --git a/fix_rpath.patch b/fix_rpath.patch new file mode 100644 index 0000000..3df0919 --- /dev/null +++ b/fix_rpath.patch @@ -0,0 +1,20 @@ +--- a/plugins/wacom/meson.build ++++ b/plugins/wacom/meson.build +@@ -27,7 +27,7 @@ executable( + dependencies: deps, + c_args: cflags, + install: true, +- install_rpath: pkglibdir, ++ install_rpath: join_paths(prefix, apilibdir), + install_dir: libexecdir + ) + +@@ -53,7 +53,7 @@ foreach program: programs + include_directories: include_dirs, + dependencies: led_deps, + install: true, +- install_rpath: pkglibdir, ++ install_rpath: join_paths(prefix, apilibdir), + install_dir: libexecdir + ) + endforeach