Add script to install the compat3x distribution.

This commit is contained in:
David E. O'Brien 1999-04-20 11:42:51 +00:00
parent ac34a7a431
commit d790bc7096
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=45864

View File

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