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:
Makoto Matsushita 2002-04-26 13:33:46 +00:00
parent 9e1b5510c3
commit d40aecb39d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=95498

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