Provide the installation script for the lib32 distribution.

This commit is contained in:
Ruslan Ermilov 2006-08-28 08:13:56 +00:00
parent c3a7e31314
commit 8163990348
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=161689

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