diff options
author | olgeni <olgeni@FreeBSD.org> | 2002-11-22 16:23:14 +0000 |
---|---|---|
committer | olgeni <olgeni@FreeBSD.org> | 2002-11-22 16:23:14 +0000 |
commit | 28384f86c1e11127597facaf24891278660c3717 (patch) | |
tree | 80960645fabc83088dc5dc36a229b99c08420456 /x11-fm | |
parent | 646068534fa118d73a3479389f8657ce0011a38b (diff) | |
download | FreeBSD-ports-28384f86c1e11127597facaf24891278660c3717.zip FreeBSD-ports-28384f86c1e11127597facaf24891278660c3717.tar.gz |
find, rm, xargs -> ${FIND}, ${RM}, ${XARGS}.
Diffstat (limited to 'x11-fm')
-rw-r--r-- | x11-fm/rox-base/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/x11-fm/rox-base/Makefile b/x11-fm/rox-base/Makefile index ac3d8f2..374567a 100644 --- a/x11-fm/rox-base/Makefile +++ b/x11-fm/rox-base/Makefile @@ -17,14 +17,14 @@ MAINTAINER= olgeni@FreeBSD.org NO_BUILD= yes post-extract: - find ${WRKSRC} -type d -name CVS | xargs rm -rf + ${FIND} ${WRKSRC} -type d -name CVS | ${XARGS} ${RM} -rf do-install: ${MKDIR} ${PREFIX}/share/Choices ${CP} -r ${WRKSRC}/Choices ${PREFIX}/share - @find ${PREFIX}/share/Choices -type f -exec ${CHMOD} 664 {} \; - @find ${PREFIX}/share/Choices/MIME-types -type f \ + @${FIND} ${PREFIX}/share/Choices -type f -exec ${CHMOD} 664 {} \; + @${FIND} ${PREFIX}/share/Choices/MIME-types -type f \ -exec ${CHMOD} 775 {} \; - @find ${PREFIX}/share/Choices -type d -exec ${CHMOD} 775 {} \; + @${FIND} ${PREFIX}/share/Choices -type d -exec ${CHMOD} 775 {} \; .include <bsd.port.mk> |