aboutsummaryrefslogtreecommitdiff
path: root/release/scripts/compat21-install.sh
blob: b761e57cfb2c2eb3c28da20f17b1b2917c1461cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
#
# $FreeBSD: src/release/scripts/compat21-install.sh,v 1.4 2001/04/08 23:09:21 obrien Exp $
#

if [ "`id -u`" != "0" ]; then
	echo "Sorry, this must be done as root."
	exit 1
fi
cat compat21.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
exit 0