diff options
author | dholland <dholland> | 2016-05-02 03:55:43 +0000 |
---|---|---|
committer | dholland <dholland> | 2016-05-02 03:55:43 +0000 |
commit | c99b5f095961867ed3b81c57e4f278d7deaece80 (patch) | |
tree | 5834a8b152cdb9b282d5744dc1e62461c2e87d14 | |
parent | 0f755a9667bc51de46daeae496d8c7e6e25ada46 (diff) | |
download | pkgsrc-c99b5f095961867ed3b81c57e4f278d7deaece80.tar.gz |
Explicitly chmod pkgIndex.tcl after stage-install, as otherwise it
depends on umask and then mysteriously doesn't work when installed.
-rw-r--r-- | net/tkined/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/tkined/Makefile b/net/tkined/Makefile index 28186d70f66..2bda63893eb 100644 --- a/net/tkined/Makefile +++ b/net/tkined/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2015/09/14 11:17:25 hauke Exp $ +# $NetBSD: Makefile,v 1.30 2016/05/02 03:55:43 dholland Exp $ # DISTNAME= scotty-2.1.11 @@ -37,5 +37,6 @@ CFLAGS+= -DUSE_INTERP_RESULT post-install: ${LN} -f -s tkined1.4.11 ${DESTDIR}${PREFIX}/bin/tkined ${INSTALL_DATA} ${WRKSRC}/doc/tkined.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 + chmod 644 ${DESTDIR}${PREFIX}/lib/tcl/tkined*/pkgIndex.tcl .include "../../mk/bsd.pkg.mk" |