Add script to install the compat4x distribution, just like other

compat*-install.sh scripts.

PR:		37485
MFC after:	5 days
This commit is contained in:
matusita 2002-04-26 13:33:46 +00:00
parent 04257819a4
commit 1601ff5797

View File

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