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 /mail/sendmail-old | |
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 'mail/sendmail-old')
-rw-r--r-- | mail/sendmail-old/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/sendmail-old/Makefile b/mail/sendmail-old/Makefile index 60b4b75..79d73de 100644 --- a/mail/sendmail-old/Makefile +++ b/mail/sendmail-old/Makefile @@ -111,9 +111,9 @@ pre-install: @${CAT} ${FILESDIR}/pkg-milter >>${PLIST} .endif .if !defined(NOPORTDOCS) - @cd ${WRKSRC} && find cf -type f | \ + @cd ${WRKSRC} && ${FIND} cf -type f | \ ${AWK} '{print "share/sendmail/" $$1}' >>${PLIST} - @cd ${WRKSRC} && find -d cf -type d | \ + @cd ${WRKSRC} && ${FIND} -d cf -type d | \ ${AWK} '{print "@dirrm share/sendmail/" $$1}' >>${PLIST} @${ECHO_CMD} "@dirrm share/sendmail" >>${PLIST} .for i in ${DOCS} |