diff options
-rw-r--r-- | emulators/linux_base-gentoo-stage1/Makefile | 2 | ||||
-rw-r--r-- | emulators/linux_dist-gentoo-stage1/Makefile | 2 | ||||
-rw-r--r-- | x11-wm/swm/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/emulators/linux_base-gentoo-stage1/Makefile b/emulators/linux_base-gentoo-stage1/Makefile index 4444340779fe..92e72fffb245 100644 --- a/emulators/linux_base-gentoo-stage1/Makefile +++ b/emulators/linux_base-gentoo-stage1/Makefile @@ -48,7 +48,7 @@ CONFLICTS=cle_base-* linux_base-6* linux_base-7* linux_base-8* linux_base-debia* pre-install: ${ECHO_CMD} etc/resolv.conf > ${PLIST} - ${TAR} tyf ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} | cut -c3-100 \ + ${TAR} tyf ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} | ${CUT} -c3-100 \ > ${WRKDIR}/list.txt cd ${WRKDIR} && ${GREP} -v '/$$' ${WRKDIR}/list.txt >> ${PLIST} ${GREP} '/$$' ${WRKDIR}/list.txt | ${SED} -e "s:^:@dirrm :g" >> ${PLIST} diff --git a/emulators/linux_dist-gentoo-stage1/Makefile b/emulators/linux_dist-gentoo-stage1/Makefile index 4444340779fe..92e72fffb245 100644 --- a/emulators/linux_dist-gentoo-stage1/Makefile +++ b/emulators/linux_dist-gentoo-stage1/Makefile @@ -48,7 +48,7 @@ CONFLICTS=cle_base-* linux_base-6* linux_base-7* linux_base-8* linux_base-debia* pre-install: ${ECHO_CMD} etc/resolv.conf > ${PLIST} - ${TAR} tyf ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} | cut -c3-100 \ + ${TAR} tyf ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} | ${CUT} -c3-100 \ > ${WRKDIR}/list.txt cd ${WRKDIR} && ${GREP} -v '/$$' ${WRKDIR}/list.txt >> ${PLIST} ${GREP} '/$$' ${WRKDIR}/list.txt | ${SED} -e "s:^:@dirrm :g" >> ${PLIST} diff --git a/x11-wm/swm/Makefile b/x11-wm/swm/Makefile index 86e5bd23c16b..847dbc90bcac 100644 --- a/x11-wm/swm/Makefile +++ b/x11-wm/swm/Makefile @@ -45,7 +45,7 @@ pre-install: do ${ECHO_CMD} bin/$${i} >> ${PLIST}; \ done cd ${WRKSRC}/../share/swm/pixmaps && \ - ${FIND} -s . -type f | cut -c3-999 | \ + ${FIND} -s . -type f | ${CUT} -c3-999 | \ ${SED} -e 's:^:share/swm/pixmaps/:' >> ${PLIST} .if !defined(NOPORTDOCS) for i in ${DOCS}; \ |