diff options
author | culot <culot@FreeBSD.org> | 2011-08-09 15:41:51 +0800 |
---|---|---|
committer | culot <culot@FreeBSD.org> | 2011-08-09 15:41:51 +0800 |
commit | 2f0c4e11967c9c0065c1fa8526039e109e81c110 (patch) | |
tree | 179fdeca09b131cf6ffcb593838fb5894ec6c03a /graphics | |
parent | 2e6ba029bec4b764e5185c26da0667e12fe4f83f (diff) | |
download | freebsd-ports-gnome-2f0c4e11967c9c0065c1fa8526039e109e81c110.tar.gz freebsd-ports-gnome-2f0c4e11967c9c0065c1fa8526039e109e81c110.tar.zst freebsd-ports-gnome-2f0c4e11967c9c0065c1fa8526039e109e81c110.zip |
- Make files from documentation and library readable by non-root users
PR: ports/159592
Submitted by: Matthew Luckie <mjl@luckie.org.nz> (maintainer)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/xfig/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/xfig/Makefile b/graphics/xfig/Makefile index fd8cb2629ed3..d1a6d73aaca9 100644 --- a/graphics/xfig/Makefile +++ b/graphics/xfig/Makefile @@ -51,10 +51,10 @@ PLIST_SUB= JPORTDOCS="" post-extract: @cd ${WRKSRC}/Doc && ${FIND} -s . -type d -print0 | ${XARGS} -0 ${CHMOD} a+rx - @cd ${WRKSRC}/Doc && ${FIND} . -type f -print0 | ${XARGS} -0 ${CHMOD} a-x + @cd ${WRKSRC}/Doc && ${FIND} . -type f -print0 | ${XARGS} -0 ${CHMOD} a-x+r @${CHMOD} a+rx ${WRKSRC}/Libraries @cd ${WRKSRC}/Libraries && ${FIND} -s . -type d -print0 | ${XARGS} -0 ${CHMOD} a+rx - @cd ${WRKSRC}/Libraries && ${FIND} . -type f -print0 | ${XARGS} -0 ${CHMOD} a-x + @cd ${WRKSRC}/Libraries && ${FIND} . -type f -print0 | ${XARGS} -0 ${CHMOD} a-x+r @${CP} ${WRKSRC}/Doc/xfig.man ${WRKSRC} post-patch: |