summaryrefslogtreecommitdiff
path: root/lang/py22-html-docs
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2003-04-10 01:28:03 +0000
committergrant <grant@pkgsrc.org>2003-04-10 01:28:03 +0000
commitafdebcf9a40e045d6fa993260a803c2cb44c4693 (patch)
treec67db081e20351feb52d2ca5fbde4b2c17aa2887 /lang/py22-html-docs
parent7cbde19ad7ca49e9571c24ddc71983707c8bc89a (diff)
downloadpkgsrc-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 'lang/py22-html-docs')
-rw-r--r--lang/py22-html-docs/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/py22-html-docs/Makefile b/lang/py22-html-docs/Makefile
index ff2e985fa25..b3bae48c6b0 100644
--- a/lang/py22-html-docs/Makefile
+++ b/lang/py22-html-docs/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2003/03/29 12:41:30 jmmv Exp $
+# $NetBSD: Makefile,v 1.4 2003/04/10 01:28:20 grant Exp $
#
DISTNAME= html-2.2.2
@@ -23,9 +23,9 @@ PLIST_SRC= ${WRKDIR}/.PLIST_SRC
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/${HTMLDIR}
${CAT} ${PKGDIR}/PLIST.pre >${PLIST_SRC}
- (cd ${WRKSRC}; ${PAX} -r -w -v -p e [a-z]* ${PREFIX}/${HTMLDIR})
- (cd ${PREFIX}; ${FIND} ${HTMLDIR} -type f -print >>${PLIST_SRC})
- (cd ${PREFIX}; ${FIND} -d ${HTMLDIR} -type d -print | \
- ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC})
+ cd ${WRKSRC} && ${PAX} -rw -pe [a-z]* ${PREFIX}/${HTMLDIR}
+ cd ${PREFIX} && ${FIND} ${HTMLDIR} -type f -print >>${PLIST_SRC}
+ cd ${PREFIX} && ${FIND} -d ${HTMLDIR} -type d -print | \
+ ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC}
.include "../../mk/bsd.pkg.mk"