diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2004-04-23 09:13:23 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2004-04-23 09:13:23 +0000 |
commit | f52f6c5449f9d27a56e3db9dd10d2d308fbf28d8 (patch) | |
tree | 4079ce91d2e59bc7bf70bef32723fee07917e01b /www/zope25 | |
parent | 18b4bf772af22f39bc1c962e121678596a889e23 (diff) | |
download | pkgsrc-f52f6c5449f9d27a56e3db9dd10d2d308fbf28d8.tar.gz |
"find ... -and ... -or ... "is a GNU'ism. Use -a and -o.
Diffstat (limited to 'www/zope25')
-rw-r--r-- | www/zope25/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/zope25/Makefile b/www/zope25/Makefile index d2e7506a5a2..638fab3094c 100644 --- a/www/zope25/Makefile +++ b/www/zope25/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2003/12/05 17:07:02 drochner Exp $ +# $NetBSD: Makefile,v 1.12 2004/04/23 09:13:23 uebayasi Exp $ # DISTNAME= Zope-2.6.2-src @@ -40,9 +40,9 @@ do-build: # do-install: ${INSTALL_DATA_DIR} ${ZOPEDIR} - cd ${WRKSRC} && ${FIND} ${ZOPEPY} -type f -and \! \( -name "*.[cho]" \ - -or -name "sedscript" -or -name "Makefile*" \ - -or -name "Setup*" -or -name ".cvsignore" \) \ + cd ${WRKSRC} && ${FIND} ${ZOPEPY} -type f -a \! \( -name "*.[cho]" \ + -o -name "sedscript" -o -name "Makefile*" \ + -o -name "Setup*" -o -name ".cvsignore" \) \ -print | ${PAX} -rw ${ZOPEDIR} cd ${ZOPEDIR} && ${PYTHONBIN} ${WRKSRC}/inst/compilezpy.py cd ${WRKSRC} && ${PAX} -rw ${ZOPEDATA} ${ZOPEDIR} |