diff options
author | trevor <trevor@FreeBSD.org> | 2004-01-22 20:18:43 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2004-01-22 20:18:43 +0800 |
commit | 1a4fe1abef078142c88fe743751cab946f0e6d1a (patch) | |
tree | b3f0484b3d24d10d7a0453f904fc5634ac0fd064 /devel/linux-glib2 | |
parent | b986261853674afc9ed239fc66c9bd33bb7acb46 (diff) | |
download | freebsd-ports-gnome-1a4fe1abef078142c88fe743751cab946f0e6d1a.tar.gz freebsd-ports-gnome-1a4fe1abef078142c88fe743751cab946f0e6d1a.tar.zst freebsd-ports-gnome-1a4fe1abef078142c88fe743751cab946f0e6d1a.zip |
Use the CPIO macro defined in bsd.port.mk.
Diffstat (limited to 'devel/linux-glib2')
-rw-r--r-- | devel/linux-glib2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/linux-glib2/Makefile b/devel/linux-glib2/Makefile index f41fa5b6a1cc..9d49e28c4f46 100644 --- a/devel/linux-glib2/Makefile +++ b/devel/linux-glib2/Makefile @@ -25,8 +25,8 @@ pre-install: ${RM} -rf ${WRKSRC}/tmp ${MKDIR} ${WRKSRC}/tmp cd ${WRKSRC}/tmp; \ - rpm2cpio.pl < ${DISTDIR}/${DIST_SUBDIR}/${RPM_SET} | cpio -id; \ - ${FIND} * -type f -o -type l > ${PLIST}; \ + rpm2cpio.pl < ${DISTDIR}/${DIST_SUBDIR}/${RPM_SET} | \ + ${CPIO} -id; ${FIND} * -type f -o -type l > ${PLIST}; \ ${FIND} -d * -type d | ${GREP} glib | ${SED} -e 's:^:@dirrm :' \ >> ${PLIST} |