diff options
author | grant <grant> | 2003-04-10 01:28:03 +0000 |
---|---|---|
committer | grant <grant> | 2003-04-10 01:28:03 +0000 |
commit | 3658cb69164d87994099b24340f06a30f37dd521 (patch) | |
tree | c67db081e20351feb52d2ca5fbde4b2c17aa2887 /www/zope25 | |
parent | 217d57c2dcbe8490f0672ad2d0cd57c35a195d16 (diff) | |
download | pkgsrc-3658cb69164d87994099b24340f06a30f37dd521.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/zope25')
-rw-r--r-- | www/zope25/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/www/zope25/Makefile b/www/zope25/Makefile index f2ee5471c63..1fd85bce4a9 100644 --- a/www/zope25/Makefile +++ b/www/zope25/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2002/10/24 22:11:05 drochner Exp $ +# $NetBSD: Makefile,v 1.4 2003/04/10 01:28:31 grant Exp $ # DISTNAME= Zope-2.5.1-src @@ -39,14 +39,14 @@ do-build: # do-install: ${INSTALL_DATA_DIR} ${ZOPEDIR} - (cd ${WRKSRC}; ${FIND} ${ZOPEPY} -type f -and \! \( -name "*.[cho]" \ + cd ${WRKSRC} && ${FIND} ${ZOPEPY} -type f -and \! \( -name "*.[cho]" \ -or -name "sedscript" -or -name "Makefile*" \ -or -name "Setup*" -or -name ".cvsignore" \) \ - -print | ${PAX} -r -w ${ZOPEDIR}) + -print | ${PAX} -rw ${ZOPEDIR} #install hotfix - (cd ${WRKDIR}; ${PAX} -r -w lib ${ZOPEDIR}) - (cd ${ZOPEDIR}; ${PYTHONBIN} ${WRKSRC}/inst/compilezpy.py) - (cd ${WRKSRC}; ${PAX} -r -w ${ZOPEDATA} ${ZOPEDIR}) + cd ${WRKDIR} && ${PAX} -rw lib ${ZOPEDIR} + cd ${ZOPEDIR} && ${PYTHONBIN} ${WRKSRC}/inst/compilezpy.py + cd ${WRKSRC} && ${PAX} -rw ${ZOPEDATA} ${ZOPEDIR} .include "../../lang/python/application.mk" .include "../../mk/bsd.pkg.mk" |