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/ap-python | |
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/ap-python')
-rw-r--r-- | www/ap-python/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/www/ap-python/Makefile b/www/ap-python/Makefile index 7ea87cc0e01..07cab05595d 100644 --- a/www/ap-python/Makefile +++ b/www/ap-python/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2002/10/25 12:59:09 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2003/04/10 01:28:28 grant Exp $ # DISTNAME= mod_python-2.7.6 @@ -21,15 +21,15 @@ PYTHON_VERSIONS_ACCEPTED= 20 post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/ap-mod_python - ( cd ${WRKSRC}; ${PAX} -r -w -s /doc-html/ap-mod_python/ \ - -p e doc-html ${PREFIX}/share/doc/html ) + cd ${WRKSRC} && ${PAX} -rw -s /doc-html/ap-mod_python/ \ + -pe doc-html ${PREFIX}/share/doc/html ${ECHO} lib/httpd/mod_python.so >${PLIST_SRC} - (cd ${PREFIX}; ${FIND} ${PYSITELIB}/mod_python \ + cd ${PREFIX} && ${FIND} ${PYSITELIB}/mod_python \ share/doc/html/ap-mod_python \ - -type f -print >>${PLIST_SRC} ) - ( cd ${PREFIX}; ${FIND} -d ${PYSITELIB}/mod_python \ + -type f -print >>${PLIST_SRC} + cd ${PREFIX} && ${FIND} -d ${PYSITELIB}/mod_python \ share/doc/html/ap-mod_python \ - -type d -print | ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC} ) + -type d -print | ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC} .include "../../lang/python/extension.mk" .include "../../www/apache/buildlink2.mk" |