Jelle van der Waa pushed to branch main at Arch Linux / Packaging / Packages /
tk
Commits:
23a4425b by Jelle van der Waa at 2023-08-22T20:56:18+02:00
Remove executable bit from static library
Fixes: FS#75042
- - - - -
1 changed file:
- PKGBUILD
Changes:
=====================================
PKGBUILD
=====================================
@@ -2,7 +2,7 @@
pkgname=tk
pkgver=8.6.13
-pkgrel=1
+pkgrel=2
pkgdesc="A windowing toolkit for use with tcl"
arch=('x86_64')
url="http://tcl.sourceforge.net/"
@@ -41,4 +41,7 @@ package() {
sed -e "s#${srcdir}/tk${pkgver}/unix#/usr/lib#" \
-e "s#${srcdir}/tk${pkgver}#/usr/include#" \
-i "${pkgdir}/usr/lib/tkConfig.sh"
+
+ # remove unrequired execute permissions (FS#75042)
+ chmod -x "${pkgdir}/usr/lib/libtkstub8.6.a"
}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/tk/-/commit/23a4425bde5bebd2746b7409df2e1b590d75c1e5
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/tk/-/commit/23a4425bde5bebd2746b7409df2e1b590d75c1e5
You're receiving this email because of your account on gitlab.archlinux.org.