From 792f8133d6a4567a1a7d550412e2083ac20e7fad Mon Sep 17 00:00:00 2001 From: =?utf8?q?Peter=20M=C3=BCller?= Date: Sun, 17 Sep 2023 21:31:00 +0200 Subject: [PATCH] sudo: Fix incorrect location of libsudo_utils.so MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reported-by: Arne Fitzenreiter Signed-off-by: Peter Müller --- sudo/sudo.nm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sudo/sudo.nm b/sudo/sudo.nm index 50fc02f07..4757ecec3 100644 --- a/sudo/sudo.nm +++ b/sudo/sudo.nm @@ -5,7 +5,7 @@ name = sudo version = 1.9.14p3 -release = 1 +release = 2 groups = Applications/System url = https://www.sudo.ws/ @@ -70,6 +70,9 @@ build # Fix library permissions. find %{BUILDROOT}%{libdir}/%{name} -type f -iname "*.so" -exec chmod 755 {} \; + # ... and move the libraries to the correct place + mv -v %{BUILDROOT}%{libdir}/%{name}/libsudo_util.so* %{BUILDROOT}%{libdir}/ + end end -- 2.47.2