diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-09-29 08:07:47 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-09-29 08:07:47 +0000 |
commit | 6082ca2e05b85fdb12f2aef925cab45c43bde641 (patch) | |
tree | a0f246c26b50146fa795ed24dbed9fe7377d3238 /devel | |
parent | 3b663578f7f4fadc03c93424b74df4b217f91c8f (diff) |
Notes
Diffstat (limited to 'devel')
-rw-r--r-- | devel/flux/Makefile | 4 | ||||
-rw-r--r-- | devel/make++/Makefile | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/devel/flux/Makefile b/devel/flux/Makefile index db773d5b7543..254bb778acdb 100644 --- a/devel/flux/Makefile +++ b/devel/flux/Makefile @@ -41,8 +41,8 @@ post-install: @${MKDIR} ${PREFIX}/share/doc/flux ${TAR} -C ${WRKSRC}/doc --exclude ChangeLog -cf - . | \ ${TAR} -C ${PREFIX}/share/doc/flux --unlink -xf - - @find ${PREFIX}/share/doc/flux | xargs ${CHOWN} ${SHAREOWN}:${SHAREGRP} - @find ${PREFIX}/share/doc/flux -type f | xargs ${CHMOD} ${SHAREMODE} + @${FIND} ${PREFIX}/share/doc/flux | ${XARGS} ${CHOWN} ${SHAREOWN}:${SHAREGRP} + @${FIND} ${PREFIX}/share/doc/flux -type f | ${XARGS} ${CHMOD} ${SHAREMODE} .for DOC in AUTHORS NEWS README TODO ${INSTALL_DATA} ${WRKSRC}/${DOC} ${PREFIX}/share/doc/flux .endfor diff --git a/devel/make++/Makefile b/devel/make++/Makefile index 54136e21712d..68a94ef3717d 100644 --- a/devel/make++/Makefile +++ b/devel/make++/Makefile @@ -29,11 +29,11 @@ do-install: @${MKDIR} ${DATADIR}/Signature ${INSTALL_SCRIPT} ${WRKSRC}/recursive_makepp ${DATADIR} @(cd ${WRKSRC} ; \ - find . -name "*.pm" -maxdepth 1 -exec ${INSTALL_SCRIPT} {} ${DATADIR} \;) + ${FIND} . -name "*.pm" -maxdepth 1 -exec ${INSTALL_SCRIPT} {} ${DATADIR} \;) @(cd ${WRKSRC}/Signature ; \ - find . -name "*.pm" -exec ${INSTALL_SCRIPT} {} ${DATADIR}/Signature \;) + ${FIND} . -name "*.pm" -exec ${INSTALL_SCRIPT} {} ${DATADIR}/Signature \;) @(cd ${WRKSRC} ; \ - find . -name "*.mk" -exec ${INSTALL_SCRIPT} {} ${DATADIR} \;) + ${FIND} . -name "*.mk" -exec ${INSTALL_SCRIPT} {} ${DATADIR} \;) @${MKDIR} ${DATADIR}/html ${CP} ${WRKSRC}/doc/* ${DATADIR}/html |