graphics/xart: Fix post-extract chmod again

Three months ago, the post-extract command was modified because it didn't
work on Solaris.  The fix provided broke the non-root user build.  The
problem with the original post-extract command was that it started with
$WRKDIR instead of $WRKSRC.  Return this target back to a tweaked version
of the original post-extract command (and cross fingers that it still
works on Solaris)
This commit is contained in:
marino 2012-05-27 18:32:50 +00:00
parent 4e39536fab
commit 2e7091bb9e

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.56 2012/05/03 09:55:30 obache Exp $
# $NetBSD: Makefile,v 1.57 2012/05/27 18:32:50 marino Exp $
#
DISTNAME= xart19980415
@ -21,7 +21,8 @@ WRKSRC= ${WRKDIR}/19980415
USE_IMAKE= YES
post-extract:
chmod -R u+rwX,go+rX ${WRKSRC}
${FIND} ${WRKSRC} -type d -exec ${CHMOD} 755 {} \;
${FIND} ${WRKSRC} -type f -exec ${CHMOD} 644 {} \;
.include "../../mk/jpeg.buildlink3.mk"
.include "../../graphics/tiff/buildlink3.mk"