diff options
author | mva <mva@FreeBSD.org> | 2012-08-02 15:39:04 +0800 |
---|---|---|
committer | mva <mva@FreeBSD.org> | 2012-08-02 15:39:04 +0800 |
commit | 7a7da36f99fc6aa631f33c02b9b0fad2fd7aeb6c (patch) | |
tree | 90af7c61c1c4b462b3edbd62adf5a0df25df179f /devel | |
parent | e5756b48d934b1f5f6a031150472fbac05094dba (diff) | |
download | freebsd-ports-gnome-7a7da36f99fc6aa631f33c02b9b0fad2fd7aeb6c.tar.gz freebsd-ports-gnome-7a7da36f99fc6aa631f33c02b9b0fad2fd7aeb6c.tar.zst freebsd-ports-gnome-7a7da36f99fc6aa631f33c02b9b0fad2fd7aeb6c.zip |
- Fix file permissions for py2stdlib module
PR: ports/170290
Reported by: Garrett Cooper <yanegomi@gmail.com>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/py-astng/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/py-astng/Makefile b/devel/py-astng/Makefile index 3f998d3fb8de..0bc07817b3da 100644 --- a/devel/py-astng/Makefile +++ b/devel/py-astng/Makefile @@ -7,6 +7,7 @@ PORTNAME= astng PORTVERSION= 0.24.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= LOGILAB PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -22,4 +23,9 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes PYDISTUTILS_PKGNAME= logilab-astng -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +post-patch: + @${CHMOD} a+r ${WRKSRC}/brain/py2stdlib.py + +.include <bsd.port.post.mk> |