From 28384f86c1e11127597facaf24891278660c3717 Mon Sep 17 00:00:00 2001 From: olgeni Date: Fri, 22 Nov 2002 16:23:14 +0000 Subject: find, rm, xargs -> ${FIND}, ${RM}, ${XARGS}. --- x11-fm/rox-base/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'x11-fm') diff --git a/x11-fm/rox-base/Makefile b/x11-fm/rox-base/Makefile index ac3d8f2403a5..374567afd50b 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 -- cgit