This commit is contained in:
David E. O'Brien 1999-05-10 00:54:18 +00:00
parent 7cbb70b303
commit b42cb34552
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=46854

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 compat22.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
exit 0