diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2006-08-28 08:13:56 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2006-08-28 08:13:56 +0000 |
| commit | 8163990348094222a08bec44b2f5cb57dac60926 (patch) | |
| tree | a890c19061b13a17e46e8717e33d121ef098f3bf /release/scripts | |
| parent | c3a7e3131482140cffd4c9b4e4ca55c0e6a3e260 (diff) | |
Notes
Diffstat (limited to 'release/scripts')
| -rw-r--r-- | release/scripts/lib32-install.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/release/scripts/lib32-install.sh b/release/scripts/lib32-install.sh new file mode 100644 index 000000000000..c6f732d0138b --- /dev/null +++ b/release/scripts/lib32-install.sh @@ -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 |
