]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
tcl: Fix library permissions
authorStefan Schantl <stefan.schantl@ipfire.org>
Sun, 19 Mar 2023 14:13:54 +0000 (15:13 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 21 Mar 2023 18:25:40 +0000 (18:25 +0000)
Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
tcl/tcl.nm

index 76bc6eea9bba017b03d237e7517052ab1dac3df2..19e5024d2f28c0fb6c0c2f77836a1e48c06eb628 100644 (file)
@@ -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