From: Stefan Schantl Date: Sun, 19 Mar 2023 14:13:54 +0000 (+0100) Subject: tcl: Fix library permissions X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fb4b78cd72f13a1dae4b78bfc68163273585f9d9;p=people%2Fpmueller%2Fipfire-3.x.git tcl: Fix library permissions Signed-off-by: Stefan Schantl --- diff --git a/tcl/tcl.nm b/tcl/tcl.nm index 76bc6eea9..19e5024d2 100644 --- a/tcl/tcl.nm +++ b/tcl/tcl.nm @@ -6,7 +6,7 @@ name = tcl major_ver = 8.6 version = %{major_ver}.13 -release = 1.2 +release = 2 thisapp = tcl%{version} groups = Development/Languages @@ -15,8 +15,8 @@ license = TCL summary = Tool Command Language, pronounced tickle. description - The Tcl (Tool Command Language) provides a powerful platform for\ - creating integration applications that tie together diverse \ + The Tcl (Tool Command Language) provides a powerful platform for + creating integration applications that tie together diverse applications, protocols, devices, and frameworks. end @@ -64,6 +64,10 @@ build # Fix permissions. chmod 644 %{BUILDROOT}%{libdir}/libtclstub%{major_ver}.a + + # Fix private shared library permissions. + find %{BUILDROOT}%{libdir} -type f -iname "*.so" \ + -exec chmod -v 755 {} \; end end