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 /databases/zope-mysql | |
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 'databases/zope-mysql')
-rw-r--r-- | databases/zope-mysql/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/zope-mysql/Makefile b/databases/zope-mysql/Makefile index afc916ed873..d1663238f0c 100644 --- a/databases/zope-mysql/Makefile +++ b/databases/zope-mysql/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2003/03/29 12:40:28 jmmv Exp $ +# $NetBSD: Makefile,v 1.17 2003/04/10 01:28:14 grant Exp $ # DISTNAME= ZMySQLDA-1.1.3-nonbin @@ -33,7 +33,7 @@ do-build: do-install: ${CAT} ${PKGDIR}/PLIST.pre >${PLIST_SRC} - (cd ${WRKDIR}; ${PAX} -r -w lib ${ZOPEDIR}) + cd ${WRKDIR} && ${PAX} -rw lib ${ZOPEDIR} ${CHMOD} -R a+rX ${ZOPEDIR}/${DAPATH} (cd ${PREFIX}; ${FIND} lib/zope/${DAPATH} -type f -print >>${PLIST_SRC}) ${ECHO} "@dirrm lib/zope/${DAPATH}" >> ${PLIST_SRC} |