diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 14:45:08 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 14:45:08 +0000 |
commit | e99ceadaf6c77b80c19e16d91306e944305b1c88 (patch) | |
tree | e8a8f4dac51e148717ae07e2de0c635ec5d58833 /devel/fnorb | |
parent | Update to 1.0.47. (diff) |
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Diffstat (limited to 'devel/fnorb')
-rw-r--r-- | devel/fnorb/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/fnorb/Makefile b/devel/fnorb/Makefile index ce1809299b6c..413217f88014 100644 --- a/devel/fnorb/Makefile +++ b/devel/fnorb/Makefile @@ -45,7 +45,7 @@ post-build: post-install: @ ${MKDIR} ${FNORB_DIR}/script - @ cd ${WRKSRC} && find *.py *.pyc *.pyo compiler cos orb parser \ + @ cd ${WRKSRC} && ${FIND} *.py *.pyc *.pyo compiler cos orb parser \ script/*.py script/*.pyc script/*.pyo \! -name \*.orig \ | ${CPIO} ${BINOWN}:${BINGRP} ${FNORB_DIR} @ ${MKDIR} ${PREFIX}/bin @@ -56,10 +56,10 @@ post-install: ${PREFIX}/etc/fnorb.cfg.sample .if !defined(NOPORTDOCS) @ ${MKDIR} ${EXAMPLESDIR} - @ cd ${WRKSRC}/examples && find * \ + @ cd ${WRKSRC}/examples && ${FIND} * \ | ${CPIO} ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR} @ ${MKDIR} ${DOCSDIR} - @ cd ${WRKSRC}/doc && find . \ + @ cd ${WRKSRC}/doc && ${FIND} . \ | ${CPIO} ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} @ ${CHMOD} -R u-x ${DOCSDIR} && ${CHMOD} -R u+X ${DOCSDIR} .for file in ANNOUNCE CHANGES README LICENSE.HTML |