diff options
author | trevor <trevor@FreeBSD.org> | 2003-11-13 13:30:42 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2003-11-13 13:30:42 +0000 |
commit | 0a792d129c721bbf05ec4507020041dae7ccb939 (patch) | |
tree | 5443a6df79f666d3a39d8c4f9b5f89991dc6ce44 /net/coda5_doc | |
parent | 0bfadbd86b2e8399c2d3221e66321fc0dc66cab1 (diff) | |
download | FreeBSD-ports-0a792d129c721bbf05ec4507020041dae7ccb939.zip FreeBSD-ports-0a792d129c721bbf05ec4507020041dae7ccb939.tar.gz |
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Diffstat (limited to 'net/coda5_doc')
-rw-r--r-- | net/coda5_doc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/coda5_doc/Makefile b/net/coda5_doc/Makefile index 3c13a69..fba2432 100644 --- a/net/coda5_doc/Makefile +++ b/net/coda5_doc/Makefile @@ -100,7 +100,7 @@ do-build: @${ECHO} "or two." do-install: - find ${WRKSRC} -type d -exec chmod 755 {} \; + ${FIND} ${WRKSRC} -type d -exec chmod 755 {} \; cd ${WRKSRC}; tar cf - man | (cd ${PREFIX}; tar xvf -) .if !defined(NOPORTDOCS) cd ${WRKSRC}; tar cf - doc | (cd ${PREFIX}/share; tar xvf -) |