diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-09-29 16:07:47 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-09-29 16:07:47 +0800 |
commit | e192667b15b8f0e87286ddfcfc7298e1d9342dea (patch) | |
tree | 0dc4a3b30902b2f47b536be78e219b125441c267 /graphics/EZWGL | |
parent | 21235fc28e9a76b3ba4673f6fc9c0313cb4e1727 (diff) | |
download | freebsd-ports-gnome-e192667b15b8f0e87286ddfcfc7298e1d9342dea.tar.gz freebsd-ports-gnome-e192667b15b8f0e87286ddfcfc7298e1d9342dea.tar.zst freebsd-ports-gnome-e192667b15b8f0e87286ddfcfc7298e1d9342dea.zip |
find->${FIND},xargs->${XARGS}
PR: 40791
Submitted by: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
Diffstat (limited to 'graphics/EZWGL')
-rw-r--r-- | graphics/EZWGL/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/EZWGL/Makefile b/graphics/EZWGL/Makefile index 197ecc5937ce..5ed236a73984 100644 --- a/graphics/EZWGL/Makefile +++ b/graphics/EZWGL/Makefile @@ -27,7 +27,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ .include "${FILESDIR}/manpages" post-extract: - find ${WRKSRC} -name CVS | xargs ${RM} -rf + ${FIND} ${WRKSRC} -name CVS | ${XARGS} ${RM} -rf post-install: .for file in ${MAN3} @@ -38,14 +38,14 @@ post-install: ${TAR} -C ${PREFIX}/share/examples/EZ --unlink -xf - ${TAR} -C ${WRKSRC} --exclude 'Makefile.in' -cf - demos | \ ${TAR} -C ${PREFIX}/share/examples/EZ --unlink -xf - - find ${PREFIX}/share/examples/EZ | xargs ${CHOWN} ${SHAREOWN}:${SHAREGRP} - find ${PREFIX}/share/examples/EZ -type f | xargs ${CHMOD} ${SHAREMODE} + ${FIND} ${PREFIX}/share/examples/EZ | ${XARGS} ${CHOWN} ${SHAREOWN}:${SHAREGRP} + ${FIND} ${PREFIX}/share/examples/EZ -type f | ${XARGS} ${CHMOD} ${SHAREMODE} .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/EZ ${TAR} -C ${WRKSRC}/doc --exclude 'misc' -cf - html ps | \ ${TAR} -C ${PREFIX}/share/doc/EZ --unlink -xf - - find ${PREFIX}/share/doc/EZ | xargs ${CHOWN} ${SHAREOWN}:${SHAREGRP} - find ${PREFIX}/share/doc/EZ -type f | xargs ${CHMOD} ${SHAREMODE} + ${FIND} ${PREFIX}/share/doc/EZ | ${XARGS} ${CHOWN} ${SHAREOWN}:${SHAREGRP} + ${FIND} ${PREFIX}/share/doc/EZ -type f | ${XARGS} ${CHMOD} ${SHAREMODE} .endif .include <bsd.port.post.mk> |