diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2004-01-22 12:18:43 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2004-01-22 12:18:43 +0000 |
commit | 439b8a040c6cc5d9c091b08a90056d1059d4640b (patch) | |
tree | 8132e1111bd2c96ba9c0959d3cfce2b62a26551b /devel/linux_devtools | |
parent | - Fix .PLIST* creation (diff) |
Use the CPIO macro defined in bsd.port.mk.
Notes
Notes:
svn path=/head/; revision=98793
Diffstat (limited to 'devel/linux_devtools')
-rw-r--r-- | devel/linux_devtools/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/linux_devtools/Makefile b/devel/linux_devtools/Makefile index 09d2d459c2b2..6ce706f156d0 100644 --- a/devel/linux_devtools/Makefile +++ b/devel/linux_devtools/Makefile @@ -68,7 +68,8 @@ pre-install: ${RM} -rf ${WRKSRC}/tmp ${MKDIR} ${WRKSRC}/tmp .for ii in ${DISTFILES} ${PATCHFILES} - cd ${WRKSRC}/tmp; rpm2cpio < ${DISTDIR}/${DIST_SUBDIR}/${ii} | cpio -id + cd ${WRKSRC}/tmp; rpm2cpio < ${DISTDIR}/${DIST_SUBDIR}/${ii} | \ + ${CPIO} -id .endfor cd ${WRKSRC}/tmp; ${FIND} * -type f -o -type l > ${PLIST}; \ ${FIND} -d * -type d | ${SED} -e 's:^:@dirrm :'>> ${PLIST} |