diff options
author | dholland <dholland@pkgsrc.org> | 2012-03-05 04:36:04 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2012-03-05 04:36:04 +0000 |
commit | b3c2a2fa97c5698ca6287259d32f9ba579b55688 (patch) | |
tree | cf916c2cc1c8fa6340a075c9f2e7c0fba1cd2eb4 /graphics/xart | |
parent | cd227e650aa8e6a5a98d4a33e56e9e7d785e62f9 (diff) | |
download | pkgsrc-b3c2a2fa97c5698ca6287259d32f9ba579b55688.tar.gz |
Fix post-extract chmod so it hopefully works on Solaris. This thing
ships with its toplevel dir mode 0, and it seems that on Solaris if
you do find -exec chmod, find fails before it manages to run chmod.
Diffstat (limited to 'graphics/xart')
-rw-r--r-- | graphics/xart/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/graphics/xart/Makefile b/graphics/xart/Makefile index 70a2a6c3fd2..e2f51d45d95 100644 --- a/graphics/xart/Makefile +++ b/graphics/xart/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.54 2012/02/06 12:40:38 wiz Exp $ +# $NetBSD: Makefile,v 1.55 2012/03/05 04:36:04 dholland Exp $ # DISTNAME= xart19980415 @@ -21,8 +21,7 @@ WRKSRC= ${WRKDIR}/19980415 USE_IMAKE= YES post-extract: - cd ${WRKDIR} && find * -type d -exec chmod 755 "{}" ";" - cd ${WRKDIR} && find * -type f -print | xargs chmod 644 + chmod -R u+rwX,go+rX ${WRKSRC} .include "../../mk/jpeg.buildlink3.mk" .include "../../graphics/tiff/buildlink3.mk" |