Remove an unnecessary cat.

PR:		145447
Submitted by:	u at netbeisser dot de
MFC after:	1 week
This commit is contained in:
brian 2010-06-19 09:33:11 +00:00
parent 58c520e562
commit 085c49ad8c

View File

@ -8,5 +8,5 @@ if [ "`id -u`" != "0" ]; then
exit 1 exit 1
fi fi
echo "Extracting ports tarball into ${DESTDIR}/usr" echo "Extracting ports tarball into ${DESTDIR}/usr"
cat ports.tgz | tar --unlink -xpzf - -C ${DESTDIR}/usr tar --unlink -xpzf ports.tgz -C ${DESTDIR}/usr
exit 0 exit 0