diff options
author | trevor <trevor@FreeBSD.org> | 2003-11-13 12:54:57 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2003-11-13 12:54:57 +0000 |
commit | 99ccbb6b71b7698a171b47b4acb288b8115e0a5b (patch) | |
tree | 8539a8273e773aa9e7e4c8e20ed94e1cbb1e2352 /sysutils/freesbie | |
parent | f32647514bf03eb1a573982c5d55b2d3188a2e39 (diff) | |
download | FreeBSD-ports-99ccbb6b71b7698a171b47b4acb288b8115e0a5b.zip FreeBSD-ports-99ccbb6b71b7698a171b47b4acb288b8115e0a5b.tar.gz |
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Diffstat (limited to 'sysutils/freesbie')
-rw-r--r-- | sysutils/freesbie/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/freesbie/Makefile b/sysutils/freesbie/Makefile index 5cd8a83..53857b9 100644 --- a/sysutils/freesbie/Makefile +++ b/sysutils/freesbie/Makefile @@ -30,7 +30,7 @@ pre-install: do-install: @${MKDIR} ${DATADIR} @ cd ${WRKSRC} && ${FIND} * -type f -print | ${CPIO} ${BINOWN}:${BINGRP} ${DATADIR} - @ cd ${DATADIR} && ${FIND} * -type d -print | xargs ${CHMOD} 0755 + @ cd ${DATADIR} && ${FIND} * -type d -print | ${XARGS} ${CHMOD} 0755 @ cd ${PREFIX} && ${FIND} share/${PORTNAME} -type f -print | ${SORT} > ${TMPPLIST} @ cd ${PREFIX} && ${FIND} share/${PORTNAME} -type d -print | ${SORT} | ${SED} -e 's#^#@dirrm #' >> ${TMPPLIST} |