aboutsummaryrefslogtreecommitdiff
path: root/release/scripts/manpages-install.sh
blob: 0ef9cbd6271adfe8843050090d05945f3f8f9e0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
#
# $FreeBSD: src/release/scripts/manpages-install.sh,v 1.3 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 manpages.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
exit 0