Remove an unnecessary cat.

PR:		145447
Submitted by:	u at netbeisser dot de
MFC after:	1 week
This commit is contained in:
Brian Somers 2010-06-19 09:33:11 +00:00
parent 5fa77f4fe4
commit bcc4111272
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=209332

View File

@ -8,5 +8,5 @@ if [ "`id -u`" != "0" ]; then
exit 1
fi
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