diff options
author | trevor <trevor@FreeBSD.org> | 2003-11-13 22:45:08 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2003-11-13 22:45:08 +0800 |
commit | 98d7950e05980253d33259a6aafcd5e3b6547fdb (patch) | |
tree | 1cbd7ce2d9411420b33e9f045481bd24f68ef920 /devel/bugzilla2/Makefile | |
parent | a959d36850b787f6723176962c2985587b2936cb (diff) | |
download | freebsd-ports-gnome-98d7950e05980253d33259a6aafcd5e3b6547fdb.tar.gz freebsd-ports-gnome-98d7950e05980253d33259a6aafcd5e3b6547fdb.tar.zst freebsd-ports-gnome-98d7950e05980253d33259a6aafcd5e3b6547fdb.zip |
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Diffstat (limited to 'devel/bugzilla2/Makefile')
-rw-r--r-- | devel/bugzilla2/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/devel/bugzilla2/Makefile b/devel/bugzilla2/Makefile index 8733d2f2543b..66b92c25b7f7 100644 --- a/devel/bugzilla2/Makefile +++ b/devel/bugzilla2/Makefile @@ -75,11 +75,11 @@ pre-everything:: @${ECHO_MSG} "" post-patch: - @find -d ${WRKSRC} -name CVS -type d -exec ${RM} -rf {} \; - @find -d ${WRKSRC} -name sgml -type d -exec ${RM} -rf {} \; - @find ${WRKSRC} -name .cvsignore -type f -exec ${RM} -f {} \; - @find ${WRKSRC} -name README.docs -type f -exec ${RM} -f {} \; - @find ${WRKSRC} -name \*.orig -type f -exec ${RM} -f {} \; + @${FIND} -d ${WRKSRC} -name CVS -type d -exec ${RM} -rf {} \; + @${FIND} -d ${WRKSRC} -name sgml -type d -exec ${RM} -rf {} \; + @${FIND} ${WRKSRC} -name .cvsignore -type f -exec ${RM} -f {} \; + @${FIND} ${WRKSRC} -name README.docs -type f -exec ${RM} -f {} \; + @${FIND} ${WRKSRC} -name \*.orig -type f -exec ${RM} -f {} \; .for i in ${BONSAIPERLWC} @${REINPLACE_CMD} -e 's@#!/usr/bonsaitools/bin/perl@#!/usr/bin/perl@' \ ${WRKSRC}/$i @@ -88,16 +88,16 @@ post-patch: @${REINPLACE_CMD} -e 's@/usr/lib/sendmail@/usr/sbin/sendmail@' \ ${WRKSRC}/$i .endfor - @find ${WRKSRC} -name \*.bak -type f -exec ${RM} -f {} \; + @${FIND} ${WRKSRC} -name \*.bak -type f -exec ${RM} -f {} \; pre-install: - @find ${WRKSRC}/docs -type d -exec ${CHMOD} 755 {} \; - @find ${WRKSRC}/docs -type f -exec ${CHMOD} ${MANMODE} {} \; - @find ${WRKSRC}/docs -type f -exec ${CHOWN} root:wheel {} \; + @${FIND} ${WRKSRC}/docs -type d -exec ${CHMOD} 755 {} \; + @${FIND} ${WRKSRC}/docs -type f -exec ${CHMOD} ${MANMODE} {} \; + @${FIND} ${WRKSRC}/docs -type f -exec ${CHOWN} root:wheel {} \; do-install: ${MKDIR} ${PREFIX}/${BUGZILLADIR} - find ${WRKSRC} \! -type d -maxdepth 1 \! -name UPGRADING* -exec \ + ${FIND} ${WRKSRC} \! -type d -maxdepth 1 \! -name UPGRADING* -exec \ ${INSTALL_SCRIPT} {} ${PREFIX}/${BUGZILLADIR} \; ${TAR} -C ${WRKSRC} -cf - template css | ${TAR} --unlink -C ${PREFIX}/${BUGZILLADIR} -xf - .if !defined(NOPORTDOCS) |