Add script to install the compat3x distribution.

This commit is contained in:
obrien 1999-04-20 11:42:51 +00:00
parent 2e2562a8e3
commit 3063a75194

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