diff options
author | marino <marino@pkgsrc.org> | 2011-12-16 17:22:08 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2011-12-16 17:22:08 +0000 |
commit | f39fae93d02321395471b5eaf7a3ba03ca98a2fb (patch) | |
tree | cadab0973465574a2ef363ebb339a54a338a098f /textproc | |
parent | 14cdbc8fa2beab6388e87f5884affbc5696bd4e8 (diff) | |
download | pkgsrc-f39fae93d02321395471b5eaf7a3ba03ca98a2fb.tar.gz |
textproc/py-enchant: Fix file permissions error
The bad file permissions on ispell/README.txt prevented the package from
building on DragonFly with PKG_DEVELOPER=yes. I'm not sure how it's passing
on NetBSD unless the bulk reports I'm seeing aren't using that option.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/py-enchant/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/textproc/py-enchant/Makefile b/textproc/py-enchant/Makefile index 45e1f4d3476..6ce7711279c 100644 --- a/textproc/py-enchant/Makefile +++ b/textproc/py-enchant/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2010/12/23 00:26:09 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2011/12/16 17:22:08 marino Exp $ # DISTNAME= pyenchant-1.6.5 @@ -37,5 +37,9 @@ SUBST_STAGE.dlpath= pre-configure SUBST_FILES.dlpath= enchant/_enchant.py SUBST_VARS.dlpath= PYENCHANT_LIBRARY_PATH +post-extract: + # fix README file permissions + ${CHMOD} 644 ${WRKSRC}/enchant/share/enchant/ispell/README.txt + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" |