summaryrefslogtreecommitdiff
path: root/www/linux-mozilla-devel
diff options
context:
space:
mode:
authorTrevor Johnson <trevor@FreeBSD.org>2003-11-13 12:54:57 +0000
committerTrevor Johnson <trevor@FreeBSD.org>2003-11-13 12:54:57 +0000
commitf725dc8ef5848b5e69ebefdc7c1f1517f26643fb (patch)
tree61e738084a4bfbaac41e371a863552bfb8c6ed2a /www/linux-mozilla-devel
parentUse the FIND and XARGS macros introduced in bsd.port.mk 1.391. (diff)
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Notes
Notes: svn path=/head/; revision=93885
Diffstat (limited to 'www/linux-mozilla-devel')
-rw-r--r--www/linux-mozilla-devel/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/linux-mozilla-devel/Makefile b/www/linux-mozilla-devel/Makefile
index 7a0d5a8c96ef..0f882f07458f 100644
--- a/www/linux-mozilla-devel/Makefile
+++ b/www/linux-mozilla-devel/Makefile
@@ -145,11 +145,11 @@ pre-install:
${ECHO_CMD} bin/${STARTUP_CMD} > ${PLIST}
${ECHO_CMD} "@unexec ${FIND} ${FULL_INSTALL_DIR}/plugins \
-type l -exec ${RM} {} \;" >> ${PLIST}
- cd ${WRKSRC}/bin; for i in `find * \! -type d | sort`; do \
+ cd ${WRKSRC}/bin; for i in `${FIND} * \! -type d | sort`; do \
${ECHO_CMD} lib/${INSTALL_DIR}/$${i} >> ${PLIST}; \
done
cd ${WRKSRC}/bin; \
- for i in `find -d * -type d`; do \
+ for i in `${FIND} -d * -type d`; do \
${ECHO_CMD} @dirrm lib/${INSTALL_DIR}/$${i} >> ${PLIST}; \
done
${ECHO_CMD} lib/${INSTALL_DIR}/linkfarm >> ${PLIST}