diff options
author | grant <grant@pkgsrc.org> | 2003-04-10 01:28:03 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-04-10 01:28:03 +0000 |
commit | afdebcf9a40e045d6fa993260a803c2cb44c4693 (patch) | |
tree | c67db081e20351feb52d2ca5fbde4b2c17aa2887 /www/py-zpublisher/Makefile | |
parent | 7cbde19ad7ca49e9571c24ddc71983707c8bc89a (diff) | |
download | pkgsrc-afdebcf9a40e045d6fa993260a803c2cb44c4693.tar.gz |
make ${PAX} usage consistent:
- group 'zrw' and 'p' args, -s last
- use the && operator consistently
- strip unneeded parens
- some whitespace cleanup
Diffstat (limited to 'www/py-zpublisher/Makefile')
-rw-r--r-- | www/py-zpublisher/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/www/py-zpublisher/Makefile b/www/py-zpublisher/Makefile index 93d2e5e4468..bad53bf35ed 100644 --- a/www/py-zpublisher/Makefile +++ b/www/py-zpublisher/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2003/03/29 12:42:53 jmmv Exp $ +# $NetBSD: Makefile,v 1.7 2003/04/10 01:28:30 grant Exp $ # DISTNAME= Zope-2.2.2-src @@ -18,18 +18,18 @@ PLIST_SRC= ${WRKDIR}/.PLIST_SRC EXTRACT_ELEMENTS= ${DISTNAME}/lib/python/ZPublisher do-build: - (cd ${WRKSRC}/..; ${PY_PROG} ${PY_LIBDIR}/compileall.py .) - (cd ${WRKSRC}/..; ${PY_PROG} -O ${PY_LIBDIR}/compileall.py .) + cd ${WRKSRC}/.. && ${PY_PROG} ${PY_LIBDIR}/compileall.py . + cd ${WRKSRC}/.. && ${PY_PROG} -O ${PY_LIBDIR}/compileall.py . do-install: ${INSTALL_SCRIPT_DIR} ${PY_SITEPKG} ${CAT} ${PKGDIR}/PLIST.pre >${PLIST_SRC} - (cd ${WRKSRC}; ${PAX} -r -w -v -p e ZPublisher ${PY_SITEPKG}) + cd ${WRKSRC} && ${PAX} -rw -pe ZPublisher ${PY_SITEPKG} ${CHMOD} 755 ${PY_SITEPKG}/ZPublisher/Test.py - (cd ${PREFIX}; ${FIND} ${PY_SITEPATH}/ZPublisher \ - -type f -print >>${PLIST_SRC}) - (cd ${PREFIX}; ${FIND} -d ${PY_SITEPATH}/ZPublisher \ - -type d -print | ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC}) + cd ${PREFIX} && ${FIND} ${PY_SITEPATH}/ZPublisher \ + -type f -print >>${PLIST_SRC} + cd ${PREFIX} && ${FIND} -d ${PY_SITEPATH}/ZPublisher \ + -type d -print | ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC} ${LN} -sf ../${PY_SITEPATH}/ZPublisher/Test.py ${PREFIX}/bin/bobo .include "../../lang/python20/Makefile.inc" |