From 3aed335a9f0315c0fd4cb28504e9331f53a19e24 Mon Sep 17 00:00:00 2001 From: Leonid Bobrov Date: Sat, 27 Feb 2021 13:16:00 +0200 Subject: [PATCH] tcl: make tclConfig.sh executable This is needed for tcltls which I'm about to package. --- srcpkgs/tcl/template | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcpkgs/tcl/template b/srcpkgs/tcl/template index d36663d8b1f..520c3e10294 100644 --- a/srcpkgs/tcl/template +++ b/srcpkgs/tcl/template @@ -1,7 +1,7 @@ # Template file for 'tcl' pkgname=tcl version=8.6.11 -revision=1 +revision=2 wrksrc="tcl${version}" build_wrksrc=unix build_style=gnu-configure @@ -26,6 +26,7 @@ post_extract() { do_install() { make INSTALL_ROOT=${DESTDIR} install install-private-headers ln -s tclsh8.6 ${DESTDIR}/usr/bin/tclsh + chmod 755 ${DESTDIR}/usr/lib/tclConfig.sh vlicense ../license.terms LICENSE }