diff options
author | rillig <rillig> | 2008-01-21 07:17:49 +0000 |
---|---|---|
committer | rillig <rillig> | 2008-01-21 07:17:49 +0000 |
commit | f5bc88715fc4d859dee1d5785f4f44bd0125cf11 (patch) | |
tree | f1b9e7c63fdf90ea2531ac9739fe76c45a63ced5 /www/zope29/Makefile | |
parent | e5779382c960312f8d7a9f20dc95410cd73f8804 (diff) | |
download | pkgsrc-f5bc88715fc4d859dee1d5785f4f44bd0125cf11.tar.gz |
Fixing permissions is done in the post-extract stage, since it belongs
there, not in post-patch.
There's no need to use xargs -0: Solaris doesn't know that option, POSIX
doesn't require it, and all the filenames are sane anyway.
Diffstat (limited to 'www/zope29/Makefile')
-rw-r--r-- | www/zope29/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/zope29/Makefile b/www/zope29/Makefile index 1c67e3cef25..ec6e249a0c3 100644 --- a/www/zope29/Makefile +++ b/www/zope29/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2008/01/06 15:57:45 taca Exp $ +# $NetBSD: Makefile,v 1.16 2008/01/21 07:17:49 rillig Exp $ # FreeBSD Id: ports/www/zope29/Makefile,v 1.86 2006/08/03 15:53:04 garga Exp DISTNAME= Zope-${ZOPE29_VERSION}-final @@ -44,9 +44,9 @@ pre-patch: ${CP} ../zope/files/sitecustomize.py ${WRKSRC}/lib/python ${RM} -f ${WRKSRC}/skel/bin/runzope.bat.in -post-patch: - ${FIND} ${WRKSRC}/doc ${WRKSRC}/lib ${WRKSRC}/skel/import \ - -type f -print0 | ${XARGS} -0 -- ${CHMOD} -x +post-extract: + cd ${WRKSRC} && ${FIND} doc lib skel/import -type f -print \ + | ${XARGS} ${CHMOD} -x post-build: cd ${WRKSRC}; ${PY_COMPILE_ALL} . |