summaryrefslogtreecommitdiffstats
path: root/release/scripts/ports-install.sh
blob: 0933e71632644f38874f12da60e929a6c1e3b624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
#
# $FreeBSD$
#

if [ "`id -u`" != "0" ]; then
	echo "Sorry, this must be done as root."
	exit 1
fi
echo "Extracting ports tarball into ${DESTDIR}/usr"
tar --unlink -xpzf ports.tgz -C ${DESTDIR}/usr
exit 0
OpenPOWER on IntegriCloud